Pagination
Pagination navigation for List requests
All GET endpoints which return an object list support cursor based pagination with pagination information inside a meta
object.
meta
Object
| Current page based on |
---|---|
| Number of results in current page. |
| Total number of results. |
| Number of pages based on |
| Boolean field. Tells if there is a previous page, based on |
| Boolean field. Tells if there is a next page, based on |
This means that to get all objects, you need to paginate through the results by always using the
Default take
is set to 10 but values up to 100 are permitted.The result list is in descending order by default (newest item first) but it can be reversed by supplying order=ASC
instead.
ARGUMENTS
Parameter | Decription |
---|---|
| (optional) Number of results per request. Accepted values: 1 - 50. Default 10 |
| (optional) Result order. Accepted values: |
| (optional) Result page. |
Updated about 1 month ago