Pagination
Content
List Pagination
When you make a request to an endpoint that returns a list of results you get back a paged resource. This has the structure
{
"page": []
"nextCursor": "next-cursor-value"
}
When doing subsequent requests to the same endpoint you can include nextCursor to get the next page of results. This is done using the "cursor" query parameter. For example.
cursor=next-cursor-value
If the cursor query parameter is not included then the "first" page is returned. For example when querying for a list of updated suppliers the first page is made up of those suppliers updated the longest ago.
You can optionally specify how many results you get per page by including the limit query parameter. By default this is set to 10.