Pagination
Some of the main API resources are associated with a listing endpoint (list of Labels, Orders and Invoices) and each of them uses a page pagination.
How to use the pagination ?
Filter name | default value | example |
---|---|---|
page | 1 | 2 |
per_page | 50 | 30 |
Example
GET "{baseUrl}/labels"
curl --request GET \
--url 'https://virtserver.swaggerhub.com/floriandonod/12plus2/1.0.0/labels?page=1&per_page=50' \
--header 'accept: application/json' \
--header 'authorization: Bearer fdksjflkjsdlkfds'
Updated 4 months ago