Result Pagination
All endpoints that return results in the form of lists provide the ability to paginate their results by leveraging page-based pagination. This can be configured via two parameters:
-
page
: The page number to be retrieved starting from 0 . The maximum page number depends on the number of retrieved records, and it is the one that contains the last record based on thepageSize
. -
pageSize
: The number of items per page to be returned (which usually depends on a backend configuration). The default value is 50 meaning that the maximum number of items that can be retrieved in each call is 50.