next
parameter.
It is often called cursor pagination.
page
parameter to identify which page of data has to be returned in response. Now, when making the first API request and if the response contains over 25 records, you will get next
value of a string type. This property can be passed as a query string parameter for subsequent requests until the next
value becomes NULL.
next
parameter string value on the first request. Then, you can iteratively get the new value of next
parameter to get all the remaining employee records.
next
cursor.
page_size
parameter is set to 25 results per page, you can over-ride this by passing in a custom page size with this parameter. If fewer records remain in the underlying connected provider than a given page_size, you will not receive a next
cursor value on the next request.
For example, if you have 17 records in total, all of them will be shown on one page with next
parameter being empty. Then you specify the page_size
= 10, you’ll get the next
value. If you use this next
value, you will get a stripped array of the last 7 records.