Pagination
Our collection level API supports list methods. To avoid fetching too much data at once, pagination is used on those collection endpoints.
They take the following parameters :
- page
- page size
Manatal will return the number of objects defined in the page_size parameter with the count and the adjacent pages:
The default value for a page size is 10.
The maximum value for page size is 100.
{
"count": 14,
"next": "https://app.manatal.com/open/v1.0/organizations/?page=2",
"previous": null,
"results": [
{... },
{... },
...
]
}
You can then specify which page you want to render using the page parameter.
More information can be found on the specific collection pages.