These docs are for v2.0. Click to read the latest docs for v3.

Pagination

All paged results have the returned items as an array of objects and a paging object as is described below.

All paged endpoints accepts 2 parameters: pageSize and pageNumber.

{
    "items": [
        {
        }
    ],
    "paging": {
        "totalItems": 100,
        "currentPage": 1,
        "pageSize": 30,
        "pageCount": 4
    }
}