Points
Set payload
Merge payload fields onto existing points identified by ID. Existing payload fields that are not specified in the request are preserved.
post/collections/{collection_name}/points/payload
Path parameters
collection_namestring required
The name of the collection containing the target points.
Request body
Example request
{
"payload": {
"color": "red",
"featured": true
},
"points": [
1,
2,
3
]
}Response
Payload set
Example response
{
"time": 0.000102816,
"status": "ok",
"result": {
"status": "Completed"
}
}