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
Example response
{
"time": 0.000119036,
"status": "ok",
"result": {
"status": "Completed"
}
}