#CraigRobertWhite
1 messages ยท Page 1 of 1 (latest)
Hm ok. So I think you can list balance transactions by a particular payout id: https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-payout. That will point to the balance transaction for the charge on the connect account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You'd have to work backwards here, so there's not really a clean way to do this
(Each charge object has a balance transaction https://stripe.com/docs/api/charges/object#charge_object-balance_transaction)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
๐ Alrighty, that's a lot of network calls but I guess if that's what we've gotta do. Thanks for your help