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.

Last updated