v3

latestOpenAPI 3.0.3raw.githubusercontent.com2026-04-279152.1 KB
Points

Delete payload keys

Remove specific payload fields from the specified points. Only explicitly listed point IDs are supported; filter-based targeting is not available for this operation. If a key does not exist on a given point, it is silently ignored.

post/collections/{collection_name}/points/payload/delete

Path parameters

collection_namestring required
Example:my_collection

The name of the collection containing the target points.

Request body

keysstring[] required

List of payload field names to remove.

Example request

{
  "keys": [
    "tags",
    "old_field"
  ],
  "points": [
    1,
    2
  ]
}

Response

Payload keys deleted

timenumber double

Time spent to process this request, in seconds.

statusstring

Operation status. Returns ok on success.

Example response

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