Admin API
Pagination
List API methods use keyset pagination to limit the number of results returned per request
Specifying the number of results
The limit
can optionally be set as a parameter on requests to list endpoints to set the maximum number of results to return. Limit can range between 1 and 100, and the default is 50.
Requesting the next page
The response object for list endpoints will include a nextPage
attribute. The value returned is a cursor
token which can be used to fetch the next page of results.
If the value of
nextPage
is null
then you have reached the last page of the results.To request the next page, include the token in the page
parameter of the request.