#nkusibojoski - pending transactions
1 messages ยท Page 1 of 1 (latest)
You can listen to balance.available: https://stripe.com/docs/api/events/types#event_types-balance.available
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I don't think I can use this, because I don't care about my Stripe balance.
I am transferring 100$ to person "XY".
Now person "XY" has 100$ in pending status.
I want to know when this 100$ are available into his account
XY is connected account
You would listen to balance.available on the connect webhook: https://stripe.com/docs/connect/webhooks. This would show when the funds are available in the connect account balance. That doesn't show when the funds hit his bank account though. To achieve that, you would also have to listen to payout events: https://stripe.com/docs/api/events/types#event_types-payout.paid
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.