#cnguyen-automatic-payouts
1 messages · Page 1 of 1 (latest)
There are several payout related events that you'd receive for connected accounts you control, such as payout.created and payout.paid:
https://stripe.com/docs/api/events/types#event_types-payout.canceled
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank you. And there is a webhook to know when a payment is available for the next payout ?
Yep, balance.available tells you when the account balance changes
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Just to be sure => I need to create an associated transfer (with transfer group), each time a transaction is available on the next payout.
I hesitate between 2 things:
- Do it when a payment is available on the next payout
- Do it just before we send the Monday payout (fetch each transaction and create the associated tansfer)
What's the best for you ?
i'm not sure what youre trying to achieve here, or what the issue is
if youre trying to send transfers from your platform account balance "before" automatic payouts, you can't do this
to use manual transfers you need to be on manual payouts to manage your balance
you can use source_transaction to associate pending payments if thats the issue