#Zain-Transfer
1 messages · Page 1 of 1 (latest)
Oh, so is there a better way to achieve my purpose.... it jsut feels really inefficient to hit the same hundreds of times to get the data.
How about using the list API? https://stripe.com/docs/api/transfers/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
That will give me all transfers in a continuous time range as defined in the parameter.
But the list that I have are not continous transfers in a time period.
I am only interested in getting transfers from a specific list that I have.
For example, if I have 200 transfers today.
I dont want all 200, I want only 5 specific transfers at random points in the day.
There's no other way I'm afraid. You need to call the retrieve API one by one.