Pagination

Collection endpoints in this API use continuation-token (cursor) pagination. You request a slice of results with limit and (optionally) continuationToken. The response returns a nextContinuationToken to fetch the next slice.

Request parameters

  • limit (int): Maximum number of items to return.
  • continuationToken (string, nullable): Opaque token that tells the API where to continue. Omit or set to null for the first page.

Response fields

  • usedContinuationToken (string, nullable): The token that was applied for this response.
  • nextContinuationToken (string, nullable): Use this value as the next request’s continuationToken. If null, there are no more results.

Paging workflow

  1. Call the endpoint with limit and no continuationToken.
  2. Read nextContinuationToken.
  3. Repeat the call with continuationToken = nextContinuationToken.
  4. Stop when nextContinuationToken is null