Pagination
Fetching all objects of a resource can be convenient. At the same time, returning too many objects at once can be unpractical from a performance perspective. Doing so might be too much work for the Notify API to generate, or for your website to process. The maximum number of objects returned is 250.
For this reason the Notify API only returns a subset of the requested set of objects. In other words, the Notify API chops the result of a certain API method call into pages you are able to programmatically scroll through.
Pagination in v2 API endpoints
The v2
API endpoints use the so-called cursor pagination method. In short, this ensures the objects in a page do not get shifted when a new object is created with the same account in the meantime, by paginating by object ID rather than by page number.
You can get the next page of objects by following the next
link.
Last updated
Was this helpful?