Pagination
API Pagination for returned bulk data.
Last updated
Was this helpful?
API Pagination for returned bulk data.
Last updated
Was this helpful?
Sometimes the data returned is just to long to display at once, such as product list, or branch list...etc. Displaying all this output data in one page will cause the app to load slow for the end users, so the pagination is the best option to control the output data to our needs.
Certain routes, such as index listing may return an array of results.
By default, the API will return the results in batch. The page
parameter may be used to increase the number of results per request.
To get the next batch of results, call the same route again with a page request parameter corresponding to the next_page
and total
property received in the last call on the pagination
part of the response.
Notice the URLOPT_POSTFIELDS => "{\"page\":5}",
You could also use null
to start fro page 1 and give next page as 2
Here is the response of the page
parameter for pagination.
And if you were to enter an invalid (non existence page number) in your call, you would get the following response: