Pagination
For the following endpoints:
GET /v3/trackers/:trackerId/baseline
GET /v3/items/:itemId/attachments
For all other endpoints where page, pageSize and total parameters are not documented otherwise, the following will apply:
They are additional pieces of information in the response, however the response will always return the whole result.
It won't be possible to change which page to return/how many elements on that page.
The page will always be 1.
The pageSize will always be equal to the total number of elements.
It is so by design to aim for a "future-proof" solution. This way, it will be possible to implement the paging later without breaking the API schema.
Was this helpful?