We have implemented GET cutomerInvoices with dynamic pageSize. This stopped working last week. We do not know the max pageSize we can use so we call the 1. time with a pageSize set to 100: https//integration.visma.net/API/controller/api/v1/customerinvoice?status=Open&pageSize=100&pageNumber=1 After receiving the response we look at element in the response "metadata":{ "totalCount":447, "maxPageSize":500 } Here the maxPageSize is 500 so next time we call with: https//integration.visma.net/API/controller/api/v1/customerinvoice?status=Open&pageSize=500&pageNumber=2 But this call will return an empty response: [] This was working OK until last week. Must we call GET customerInvoice with a static pageSize. In that case what pageSize should we use?
... View more