documents.delete
Delete one or more items by id within a namespace. Missing ids are listed innot_found_ids without failing the request. Deleting items frees global item quota immediately.
POST /namespaces/{namespace_name}/items/delete — see Delete items
Parameters
string
required
Namespace to delete from.
array
required
Non-empty array of item id strings. Maximum 100 ids per request.
Examples
deleted: 0 means none of the requested ids existed — this is still a successful call, not an exception.
Returns
string
"success" when the delete request completed.string
Human-readable result description.
string
Namespace items were deleted from.
number
Number of ids sent in the request.
number
Number of items actually removed.
array
Ids that were not found in the namespace (may be empty).
Example return value (partial)
Example return value (none found)
Error Handling
Non-2xx responses raiseMoorchehApiError. Partial deletes (some ids not found) do not raise — check not_found_ids.