Points
Overwrite payload
Replace the entire payload on the specified points. All existing payload fields are removed and replaced with the provided object. Use the set payload endpoint to merge instead.
put/collections/{collection_name}/points/payload
Path parameters
collection_namestring required
Example:my_collection
The name of the collection containing the target points.
Request body
Example request
{
"payload": {
"name": "overwritten",
"new_field": 42
},
"points": [
3
]
}Response
Payload overwritten
Example response
{
"time": 0.000065268,
"status": "ok",
"result": {
"status": "Completed"
}
}