Pagination
Pagination is used in all API endpoints that return a list of results.
Example:
{
"result": [],
"pageSize": 10,
"pageIndex": 0,
"totalRecordsFound": 0,
"resultCount": 0,
"totalPages": 0,
"queryDurationMilliseconds": 48
}
Each response will contain paging information alongside the results. To change pages or the page size, when making the GET request, append the following Query Parameters ?pageSize=10&pageIndex=1
Last updated