REST - "next" link
Overview
This document provides an introduction to using pagination with our REST APIs.
How do we expose pagination on REST ?
In the response of your request, you should receive an array called results and an object called links. This second object is an open object that can contains useful links, such as next.
The next link will contain the same request you made, with the same parameters, including the pagination parameter after , containing the internal identifier of the last item returned in the results array. This link is usable directly to query the next page of results.
If there are no more results than the ones returned, the field will be null.
Example
Results of your request.
Collection of useful links