Points

Set payload

POST
Sets payload values for specified points.

Path parameters

collection_namestringRequired
Name of the collection to set from

Query parameters

waitbooleanOptional
If true, wait for changes to actually happen
orderingenumOptional
define ordering guarantees for the operation
Allowed values: weakmediumstrong

Request

This endpoint expects an object.
payload
map from strings to anyRequired
points
list of unionsOptional
Assigns payload to each point in this list
filter
unionOptional
Assigns payload to each point that satisfy this filter condition
shard_key
unionOptional
key
stringOptional
Assigns payload to each point that satisfy this path of property

Response

This endpoint returns an object
time
doubleOptional
Time spent to process this request
status
stringOptional
result
objectOptional
POST
1curl -X POST http://localhost:6333/collections/collection_name/points/payload \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "payload": {}
6}'
200Successful
1{
2 "time": 1.1,
3 "status": "status",
4 "result": {
5 "status": "acknowledged",
6 "operation_id": 1
7 }
8}