Pagination
List endpoints (a GET on a collection) use cursor-based pagination. Please provide the following query parameters (both optional) to control the output:
limit
to control page size (default: 10, max: 1000)cursor
to control where to start (use thenextCursor
value from the previous response)
The following fields are present in the response for list endpoints:
total
to indicate the total items available in the listcount
to indicate the number of items receivedlimit
to indicate the page size requestedhasMore
to indicate more items are available in following page(s)nextCursor
to provide the starting point for the next page request
Was this helpful?