API v1 Reference

Pagination

For many methods, the results are paginated. Each request has its own default page size, but you can often specify your own page size in the request parameters:

page.pageSize=10

The limit is 200 results per page. For queries where more than 200 results are returned, you will need to send subsequent requests to retrieve the additional pages of results:

page.currentPage=2

Results can often be sorted, depending on the API method:

page.sortColumn=Last%20Name

If you can sort the results, you can also choose to sort ascending (ASC) or descending (DESC):

page.sortDirection=DESC