#oli-payout
1 messages · Page 1 of 1 (latest)
Hi there! I'm here to help!
There's the payout.paid webhook event you can listen to: https://support.stripe.com/questions/handling-negative-balances-in-your-stripe-account
yeah, but how do i link that to individual charges that are included in that payout?
If you take the Payout id and list the balance transactions via the API https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-payout
This will list all balance transactions for this specific payout.
For the request, if you filter by type: charge: 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 will provide you with all the individual charges involved in the specific payout!
Hope this helps!
ah okay, thanks :)