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 servernextCursorto provide the starting point for the next page request. If there are no more pages this field is empty
Last updated
Was this helpful?