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’scontinuationToken. If null, there are no more results.
Paging workflow
- Call the endpoint with
limitand nocontinuationToken. - Read
nextContinuationToken. - Repeat the call with
continuationToken = nextContinuationToken. - Stop when
nextContinuationTokenis null
Updated 10 days ago