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

  • count to indicate the number of items received

  • limit to indicate the page size requested

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

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

Was this helpful?