## Paging
Some endpoints can return larger quantity of records. Such endpoints do not
return the entire result, but support pagination of results.
You can page using `page` (int) and `itemsPerPage` (int) parameters.
The first page has number 1. If you require a different quantity of items per page, use the `itemsPerPage` parameter.
`itemsPerPage` has a default value used when the parameter is not specified, and a maximum value that cannot be exceeded. If a higher value is provided, the maximum is applied automatically.
The default and maximum value can be different for each endpoint.
When paging, check the total number of items, if not altered (`totalCount`), then the items on pages could be shifted and some of them could be missed or processed twice.
