Pagination
Certain methods return results in a paginated format. The structure of a paginated result is as follows:
{
"items": [
...
],
"totalPages": ...,
"totalItems": ...,
"itemsPerPage": ...,
"nextPage": ...,
"previousPage": ...
}Example
{
"items": [],
"nextPage": "next-page-number"
}Last updated