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
Example request
{
"keys": [
"tags",
"old_field"
],
"points": [
1,
2
]
}Response
Payload keys deleted
Example response
{
"time": 0.009149702,
"status": "ok",
"result": {
"status": "Completed"
}
}