Pagination
Dealing with requests that contains pagination.
Ingresse API requests provides a metadata specific for paginated responses. Those information are provided inside paginationInfo as shown below.
"paginationInfo": {
"currentPage": 1,
"lastPage": 663,
"totalResults": 16571,
"pageSize": 25
}In order to access the next page, just send page as a query parameter. The maximum page number is described by lastPage attribute.
Updated 6 months ago
