We are trying to get the account transfers for our account id. We are using dwollav2 python library for this.
As per documentation we can extract upto 10000 transfers for an account id for a given date range. While doing it we are getting an error that says only 200 transfers can be fetched.
For our problem statement we need all the transfers for the given date range (last one week). Please assist asap as it is for our critical business problem.
Attaching the screenshots of error and documentation below for your reference. Expecting a speedy resolution.
Hi @mayank_kaushik_TC – ah, apologies if that was confusing. The endpoint will only return 200 items (transfers) per call. You will then have to use the limit and offset query string params to traverse back to retrieve the 9,999th item. If you have more than 10,000 transfers, then you will need to further filter down the list by using startDate and endDate params.