DELETE /v1/indexes/products/documents/1 🔒 Bearer

Delete a document

Remove a single document by id.

Removes one document from the index. Operates on the current version — if you've just upserted, the change might take a few hundred ms to propagate across replicas, so a delete-after-write that returns 404 probably just needs a brief retry.

For bulk deletes, send ?filter_by=... on the batch endpoint or use the data-source sync mode replace.

# Response

{ "data": { "id": "1", "deleted": true } }

Returns 404 if the document does not exist.

esc
DELETE /v1/indexes/products/documents/1