v3

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

Delete points

Delete points from a collection by specifying a list of point IDs.

post/collections/{collection_name}/points/delete

Path parameters

collection_namestring required

The name of the collection to delete points from.

Request body

Example request

{
  "points": [
    1,
    2,
    3
  ]
}

Response

Points deleted

timenumber double

Time spent to process this request, in seconds.

statusstring

Operation status. Returns ok on success.

Example response

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