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 the nextCursor 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 list

  • limit to indicate the actual page size determined by the server

  • hasMore to indicate more items are available in following page(s)

  • nextCursor to provide the starting point for the next page request

Last updated

Was this helpful?