Pagination
The response for a GET request can be paginated. This means for each request, the response will be for one page of results. To work with paginated endpoints, includepageIndexand pageSize in the request header. If values are not specified, then default values will be used.
pageIndex
- Specifies the pagination page index. Pages are zero indexed, i.e. the first page has an index value of zero. If not specified, then will default to a pageIndex of 0.
- Specifies the number of items to include on a page. Must be specified if
- has been specified. If not specified, then will default to a pageSize of 50.
totalPagesand totalCount in the output response. These should be used to determine how many subsequent requests will need to be made.
totalPages
- Total number of pages based on the pageSize.
- Total number of items that matched the search parameters
pageSize ).
