Breaking change: new API pagination limits
- One minute read - 123 wordsBreaking change: new API pagination limits
By 30.05.2025, we will introduce a restriction on our pagination limits for API calls that retrieve data. If you use limits between 1 and 1000 or no limit at all, you will not be affected.
Status Quo:
Currently, you can call an endpoint with pagination, such as /api/v1/Invoice?limit=10000
, which retrieves up to 10.000 invoices.
It is also possible to submit arbitrary text, bypassing the limit.
In the future:
Any non-integer limit or any value above 1000 or below 1 will return a HTTP error code 400
(Bad Request) with the message: Invalid ’limit’ parameter. Please provide an integer value between 1 and 1000.
This change is independent of any specific release and must be implemented by 30.05.2025