Pagination
This is a new version of Pagination named "cursor Pagination" released on the 14th April 2024.
The previous version 'Page number Pagination" still working but will take end in Q3 2024.
Response pagination field
Example response
Please find below an example from GET : Jobs opened by media with the query parameter
Fields
total
: The total number of items in this request,totalPage
: Total number of pagesnext-page
: The cursor id for next page. If it's null next page doesn't exist
Request pagination field
limit
number
The number of resources per page. Default: 100, max: 500
next-page
string
The cursor Id for the page.
Warning, if you use next-page on GET endpoint, please encode the next-page
because it can be formatted with restricted URL character like '+', '/', ....
Example:
?limit=100&next-page=CIMjGgIQABoJKaZ3asmVAQAAIho6GDY3ZTFhNDc4ZTc0ODNjMWI0ZDUyOWE0Yg==
Last updated