DELETE /indices/<NAME>/documents
<NAME>
: (Required, string) Name of the index you want to delete documents.
{"id": <ID>}
{"id": <ID>}
{"id": <ID>}
...
{"id": <ID>}
<ID>
: (Required, String) Document ID to be unique in the index.
{
}
% curl -XDELETE \
--header 'Content-Type: application/json' \
--data-binary '
{"id":"1"}
{"id":"2"}
{"id":"3"}
' \
http://localhost:8000/indices/example/documents