Skip to main content

CursorPagination

nextCursor objectrequired

A cursor used to fetch the next page of results. It is null if there is no next page. Use the value as cursor parameter to fetch the next page.

oneOf
string
hasMorebooleanrequired

Indicates whether there are more results available. Keep calling the API with the provided nextCursor until hasMore is false to retrieve all results.

totalnumberrequired

The total number of results available.

Example: 42
CursorPagination
{
"nextCursor": "MjAyNS0wMS0wMSAxNzoyOTo1OS4yNwo=",
"hasMore": true,
"total": 42
}