These docs are for v1.0. Click to read the latest docs for v2.0.

Pagination

Resources that have a list method allow for the pagination of result sets. Each of these methods have a standard way of controlling pagination for the resource. When querying a list method, you will receive a response called nextPageToken which gives you a token that can be used to retrieve the next page of results.If there are no further results for a given requests, then an empty string "" will be returned for this value.

To retrieve the next set of results using the nextPageToken, pass the nextPageToken value as a pageToken in the query string, i.e.:

curl 'https://api.zylo.com/v1/subscriptions?pageToken=NEXT_PAGE_TOKEN_VALUE' \
    -H "Authorization: Bearer <TOKENID:TOKENSECRET>"