Pagination
Requests that return multiple records will be paginated to 100 items by default. You can load following pages using the page parameter. You can also set a custom page size up to 300 with the per_page
parameter. Page numbering is 1-based and that omitting the page parameter will return the first page.
The pagination link info is included in the link header.
Paginagion Response Body
"pagination": { "total_count": 0, "page_count": 0, "per_page": 300, "page": 0, "prev": "string", "next": "string", "first": "string", "last": "string" }