#dano_jan
1 messages · Page 1 of 1 (latest)
Hello! This will vary by country (and other factors, but usually country is the biggest one)
Have you read https://stripe.com/docs/payouts#payout-speed
I understand, thank you very much. Is there any event that informs me when it's in my balance? Or what do you suggest I do to be able to deposit that money directly into a Stripe Connect Account?
An event that I can catch in a webhook *
There's the balance.available event - https://stripe.com/docs/api/events/types#event_types-balance.available
But backing up for a second, what funds flow are you currently using? Are you doing destination charges? separate charges and transfers?
Sounds good.
The workflow I follow is as follows:
- My user makes a payment using a payment_intent.
- Once the payment is reflected in my balance, I initiate a payout to a connect account.
- My connect account user initiates a transfer to their bank.
I want to automate this workflow.
If you use destination charges then we (Stripe) would do the transfer to the connected account for you automatically - you can see what the flow would look like here: https://stripe.com/docs/connect/destination-charges#flow-of-funds-amount
That sounds great. I'm going to give it a try. Does it have the same waiting times?
With destination charges we'd do the transfer immediately (as soon as the payment is successful), but the funds will start off as pending in the connected account's balance. They'll be subject to the same waiting times and eventually become available
Excellent. Thank you very much for your help.
I'm sorry, one last question.
Is there any event that informs me when the payment is succesfull in a Connect Account balance??
i think is financial_connections.account.refreshed_balance
No, that's likely not waht you want
A payment being successful is separate from it showing up in the balance - destination charges being successful would be signalled by a payment_intent.succeeded webhook event on the platform account. Later, when the funds from that become available you'd see a balance.available event on the connected account
Great, I understand. I found your assistance very helpful. Thank you very much.