Pagination

In order to keep responses quick and small, multi-value results will be paginated.

By default a request will return up to 10 records per page, however this can be specified to return up to 50 per request.

To page through the records, each request will need to provide the following values in the query string:

NameTypeDescription
limitintegerThe number of records to return per request. Defaults to 10, maximum 50.
offsetintegerThe offset (i.e. page number) to return. Defaults to 1.

For example, if your limit is set to 10, and you wish to retrieve records 101 to 110 you would specify the following parameters in your request:

limit=10&offset=11

The API will return a maximum of 50 records even if a limit greater than 50 is requested.