v3

latestOpenAPI 3.0.3raw.githubusercontent.com2026-04-279152.1 KB
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

payloadobject required

The complete payload object to replace existing data.

Example request

{
  "payload": {
    "name": "overwritten",
    "new_field": 42
  },
  "points": [
    3
  ]
}

Response

Payload overwritten

timenumber double

Time spent to process this request, in seconds.

statusstring

Operation status. Returns ok on success.

Example response

{
  "time": 0.000065268,
  "status": "ok",
  "result": {
    "status": "Completed"
  }
}