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 the following two parameters:

  • page : The page number to be retrieved, starting from 0 . The maximum page number value is the page that contains the last record based on the pageSize and varies based on the number of retrieved records.
  • 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.