This guide describes how list resources are paginated.
GET
request.
Parameter | Type | Description |
---|---|---|
page[limit] | number | Specify how many items to return per page. The response might have fewer results than the default number. Default: 100 Maximum: 100 |
page[start_cursor] | string | A next_cursor value returned in a previous response. Treat this as an opaque value.Not specifying this parameter will return results from the start of the list. |
Field | Type | Description |
---|---|---|
page[total_count] | number | The total number of items contained in all pages. This number may vary as the client requests subsequent pages, owing to the possibility of new records being added or removed. |
page[has_more] | boolean | Indicates whether the page returned is the last one. |
page[next_cursor] | string | An opaque string usable for fetching the subsequent page of results by utilizing its value as the page[start_cursor] parameter in the same endpoint. This value is null when there is no more result to fetch. |
page[next_cursor]
value from the response (only available if there is more than one page of results).page[next_cursor]
to the page[start_cursor]
param in the query string.