#stripeuser_96421
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
Hello, shall I repeat the question or you want to know more about it?
you can create report runs https://stripe.com/docs/api/reporting/report_run/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
if that's not what you're looking for would you mind elaborating
just reading about it.
I am using this api https://api.stripe.com/v1/balance_transactions and I cannot use auto pagination because of my tool limitation. and I cannot make multiple calls to stripe to get one by one paginated response. So, I was looking for a solution where I can get the response of this same api in a file at one go. is it possible by the solution create report run?
I cannot use auto pagination because of my tool limitation
would you mind elaborate why
Actually I explained in my previous thread but that got closed. I am using apigee and there is a limitation of 25 MB data. So, getting all data at once using auto pagination won't work in my case
autopagination doesn't mean getting all the data at once
okay, then I misunderstood. do you mind to explain it?
watched the youtube video again. I understand auto pagination will retrieve the pages with a limit set one by one automatically.
But if some transaction fails to reach the target system (via apigee) then what is the option ? I don't want to store data in apigee and if I have to start over by calling stripe again then it will be a duplicate entries
exactly, the auto-pagination means that the SDK will handle calling the next page with the right params so you don't have to do it yourself, but this means it's n calls for n pages
AFAIK if a call fails in autopagination, the SDK will retry with the same params for the same page