qdrant_points_delete
Deletes Qdrant points by explicit IDs or a payload filter, requiring exactly one selector. Use it to remove matching vectors and their payloads from a collection.
Instructions
Delete points by id list or by payload filter — exactly one of the two.
Deleting an id that doesn't exist is not an error (Qdrant treats it as
a no-op); this only fails if the collection itself is missing, or if
you provide zero or both selectors.
Example (by id): {"collection_name": "docs", "ids": [1, 2]}
Example (by filter): {"collection_name": "docs", "points_filter": {
"must": [{"key": "city", "match": {"value": "ny"}}]
}}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | ||
| points_filter | No | ||
| collection_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | ||
| operation_id | No | Sequential number of the operation |