REST API Pagination
When you get a collection in a response, like with getting a list of files, it is paginated. That is, items in the collection are returned in batches. Every returned batch object has the following structure,
Property | Type | Value |
---|---|---|
| string | Next page URL. |
| string | Previous page URL. |
| number | A total number of objects of the queried type.
For files, the queried type depends on the stored
and |
| number | Number of objects per page. |
| array | List of paginated objects. See the documentation for specific object structure, e.g., files or groups. |