Read Records

This endpoint will return the next 256 records to be found in the specified cursor.

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.

{
    "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