All list endpoints return paginated responses. The response object contains elements of the current page, and links to the previous and next pages.
| Attribute | Description |
|---|---|
| _object string | String representing the object’s type. Always /api/collections/paginated for this object |
| prev string | link to the previous page |
| next string | link to the next page |
| data list | list of elements in the current page |
All list endpoint support the following query parameter to retrieve a specific page
| Attribute | Description |
|---|---|
| page integer | Page number of the page to retrieve. Defaults to page 1. |
| per integer | Count of items in each page. Defaults to 20. Maximum allowed value is 100. |