Read Records
This endpoint will return the next 256 records to be found by the specified cursor. Each subsequent call will return the next 256 records until the cursor is at the end of the collection.
Request
The following request shows how to query an opened cursor:
curl --location --request GET 'https://<API ROUTE>/data/read/<CURSORID>' \
--header 'Authorization: Bearer <BOT AUTH TOKEN>' \Response
If successful, an array of up to 256 records will be returned or an empty array, if the cursor is at the end of the collection.
{
"Result":[
{
...
},
{
...
}
]
}Response Codes
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 updated
Was this helpful?