#gtabeo
1 messages · Page 1 of 1 (latest)
If you wish to get the transfers in an automatic payout, you can use List Balance Transactions API: https://stripe.com/docs/expand/use-cases#charges-in-payout
However, it's not possible to retrieve the payout ID from the given transfer ID via API. It's only possible to get the transfers in a payout
So given a a payout , I can get all the transfers that it includes
Yes, you can change the type of the List Balance Transaction API to transfer: https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-type
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
this returns an empty list, instead I change the Type to payment and then in the charge object there is a source_transfer which I believe it's what I need
does it make sense?
Hi @north crystal I'm taking over
Yes, you can get the transfer ID from source_transfer .
Note that the transfer objects were created in platform, not on the connected accounts. If you plan to retrieve the transfer objects, remember to get them from the platform.
yes, this is not an issue. Problem here is perfomance. There are too many requests required.
Are you aware if the above can be achieve by CSV exports?
Perhaps a sigma query is more suitable for your use case
yes that works, but pricing it's not acceptable at the moment I believe