Pagination
HTTPGET
endpoints have:
maxItems
optional parameter to act as a limit for how many results should be returned.The default value is 250
nextPagingToken
in the response that can be used in subsequent requests to get the next results page.As long as
nextPagingToken
differs from null, there are more results available.When null, the last page of results has been reached.
To request a previous page, the client should keep track of previously requested paging tokens.
Example
Request
Response
Next Page
Error Handling
Last updated