Some of our GET
endpoints return paginated results. If additional records exist, a next_page_token
will be returned in the response. This token can be used to retrieve additional records by setting its value to the query parameter pagetoken
.
If the next_page_token
key is not returned on a endpoint that supports pagination, there are no additional records.
Below is a simplified structure that mirrors the list runs endpoint.
The next set of records can be obtained by adding pagetoken=sampletoken
as a query parameter on the URL used in the original request.