Documentation / API / Paging

All the GET operations returns a maximum of 1000 items at a time. If you want to retrieve all the data you will have to do multiple requests.

Paging

Paging always works in the same way for every operation. Paging is only available in the GET operations. It is optional but the 1000 items limitation always applies.

Page number and page size

It only requires the addition of a JSON tag that includes the page number and page size at the end of the request.

Example of using paging

Provide the tag "pagination.pageNumber" and "pagination.pageSize".

{
    'pagination' : {
        'pageNumber' : '3',
        'pageSize' : '500'
    }
}