Learn how to filter, order and paginate your requests
limit
and page
. The limit
parameter specifies the number of resources to return per page, while the page
parameter specifies the page number to return.
The page
parameter starts at 1.
The limit
parameter can be the following values: 5, 10, 20, 50, 100
lastModified
. Thus, as an example, passinglastModified=2021-03-30T20:44:18
to GET /invoices would return all invoices modified 30th March 2021 at 20:44:18 or later.
orderField
and orderDir
parameters.
The orderField
parameter specifies the field to order by, while the orderDir
parameter specifies the direction of the ordering.
The orderField
parameter currently only works for Xentral and only for the following fields: invoiceDate
.
The orderDir
parameter can be either asc
or desc
.