#compiler_errors
1 messages ยท Page 1 of 1 (latest)
In Stripe, Transfers themselves only move money between accounts. You can check the Stripe Account's list of external_accounts to see where the funds have been paid out to
https://stripe.com/docs/api/accounts/object#account_object-external_accounts
Or after the payout has happened you can check the destination property on the Payout
https://stripe.com/docs/api/payouts/create#create_payout-destination
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
What webhook event can i listen to when the funds have been paid out?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
hi there
what webhook event should i listen to get event regarding this payment settlement?
this is express connect account dashboard
@barren parrot tag for visibility!
Hi ๐
My colleague already answered you
payout.paid will identify when a payout is generated
Using that Payout ID you can list all the balance transactions related to that payout: https://stripe.com/docs/api/balance_transactions/list
@heavy badger i just tested it, and since it's a transfer to a connect account so it does not trigger payout.paid . But i see that payout.paid triggering when platform money goes to the platform's bank account.
Im trying to listen to a event when connect account's available balance goes into the account's bank account or card - so i can get bank info or card info (last 4 digits and brand)
when connect account's available balance goes into the account's bank account or card
That's what a payout is