Pagination
List endpoints (a GET on a collection) use cursor-based pagination. Please provide the following query parameters (both optional) to control the output:
limitto control page size (default: 10, max: 1000)cursorto control where to start (use thenextCursorvalue from the previous response)
The following fields are present in the response for list endpoints:
totalto indicate the total items available in the listlimitto indicate the actual page size determined by the serverhasMoreto indicate more items are available in following page(s)nextCursorto provide the starting point for the next page request
Last updated
Was this helpful?