Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Request body for bulk deleting documents by IDs or container tags
Array of document IDs to delete (max 100 at once)
Required array length:
1 - 100
elementsExample:
[
"acxV5LHMEsG2hMSNb4umbn",
"bxcV5LHMEsG2hMSNb4umbn"
]
Array of container tags - all documents in these containers will be deleted
Minimum length:
1
Example:
["user_123", "project_123"]
Response
Bulk deletion completed successfully
Response for bulk document deletion
Whether the bulk deletion was successful
Example:
true
Number of documents successfully deleted
Example:
2
Array of errors for documents that couldn't be deleted (only applicable when deleting by IDs)
Container tags that were processed (only applicable when deleting by container tags)
Example:
["user_123", "project_123"]