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 . As the maximum number of records that can be retrieved through the /data endpoint is 5000 records , the maximum page number is the one that contains the 5000th record based on the pageSize .
  • pageSize : The number of items per page to be returned. The default value is 50 meaning that the maximum number of items that can be retrieved in each call is 50 records.