Pagination is used in all API endpoints that return a list of results.
Example:
1
{
2
"result":[],
3
"pageSize":10,
4
"pageIndex":0,
5
"totalRecordsFound":0,
6
"resultCount":0,
7
"totalPages":0,
8
"queryDurationMilliseconds":48
9
}
Copied!
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
If no paging parameter are provided, default values are used. pageSize=10&pageIndex=0