Fixed: pagination for large payouts
As of Dec 16th 2024 pagination will work as expected for /payouts/{payoutUuid}
endpoint. This enhancement ensures that calls to this endpoint for large payouts will no longer timeout. It provides clients with the ability to retrieve payments in a payout in a paged manner using the page
and limit
parameters as is available across the API. The /payouts/{payoutUuid}
endpoint also now provides 1-based page numbers instead of 0-based pages. In other words, the first page is now page 1 as opposed to page 0.
When page
is not provided the endpoint defaults to returning page 1. When limit
is not provided the endpoint defaults to returning the 25 payments in a payout. The maximum limit
for returned records clients can specify is 100.
Clients will receive a 400 error when providing page
numbers below 1. Clients will also receive a 400 error when providing limit
below 1 or more than 100.