Pagination

The two resource parameters below support pagination.

ParameterDescription
Countindicates the number of desired records to be returned in the response.
Offsetindicates the starting point from which the number of records should be returned in the response. If you wish to start with the first record, you must provide 0. Always use the number prior to the record position that is desired.

For example, you have 100 records and wish to return 25 per page, you would specify it this way:

  • count=25, offset=0
  • count=25, offset 25
  • count=25, offset 50
  • count=25, offset 75Count Limit: 50
    Default Count: 10