Delete From Collection

This endpoint can be used to delete on or more documents from a Xenioo Database Collection.

Requirements

To successfully invoke this endpoint :

  1. A Bot Level Authorization Token must be created and sent in the header.

  2. An active Database package must be active on the target account.

  3. The desired collection must exist and must be flagged as accessible through API.

Request

The following request shows how to delete a single document from a Xenioo Database Collection:

curl --location --request DELETE 'https://<NODE>.xenioo.com/data/<COLLECTIONNAME>/<DOCUMENT ID>' \
--header 'Authorization: Bearer <BOT AUTH TOKEN>' \
--header 'Content-Type: application/json' \

URL Filtering Syntax can be used on the request in place of <DOCUMENT ID> to delete multiple documents with a single call.

Response

If successful, this call will return the number of documents that were deleted.

{
    "Affected":XXX
}

Response Codes

This endpoint will reply with the following standard HTTP codes.

Last updated