Skip to main content

Pagination

Cursor-Based Pagination

For more efficient handling of large datasets, cursor-based pagination is supported. A cursor parameter is implemented that allows navigating to the next or previous set of records. 

Pagination Metadata

Each paginated response includes metadata indicating the total number of records (totalCount), the current page (currentCursor), the cursor for the next page (nextCursor), the data itself, and the number of results actually returned (the default is 20)

{
"nextCursor": "T00808",
"currentCursor": "T00215",
"totalCount": 807,
"data": [...],
"resultsCount": 20
}

Pagination Parameters

Limit: the number of results to return. The default is 20.

Cursor: the record to start on as specified by currentCursor.