Query Collection
This endpoint can be used to extract documents from a Xenioo Database Collection.
To successfully invoke this endpoint :
- 1.
- 2.An active Database package must be active on the target account.
- 3.
The following request shows how to extract a single document from a Xenioo Database Collection:
curl --location --request GET 'https://<API ROUTE>/data/<COLLECTIONNAME>/<FILTER>' \
--header 'Authorization: Bearer <BOT AUTH TOKEN>'
URL Filtering Syntax can be used on the request to specify a <FILTER> for your data. Use a * (asterisk) to retrieve all records without filtering.
If successful, this call will return the raw JSON of all the extracted records.
This endpoint will reply with the following standard HTTP codes.
Code | Meaning |
200 | Ok. The request has been successfully fulfilled. |
400 | Bad Request. The call does not contain the data required to be fulfilled. |
404 | Not Found. The specified collection has not been found. |
403 | Unauthorized. The specified collection cannot be access through API |
Last modified 6mo ago