#Jane_Zhong
1 messages · Page 1 of 1 (latest)
Hi there! Just to be clear, the above creates the Transfer of funds from your platform to the Connected account, correct?
Yes, and the final step will be this Connected Account's bank account .
And I needed this step ,have no idea how to make it
Sorry for the delay! If you don't use automatic payouts for these connected accounts, you can create a manual payout: https://stripe.com/docs/api/payouts/create
If you have not explicitly configured the accounts for manual payouts, any funds you transfer to them should be automatically paid out on their payout schedule
Just be clear , if I didn't reset it ,the default will be automatic payout , that means ,after I transfer to the Connected Express Account of a user, it will payout to their bank account ,right ?
According to my code above ,in this case ,I dont's need to change more thing ,right ?
Just be clear , if I didn't reset it ,the default will be automatic payout , that means ,after I transfer to the Connected Express Account of a user, it will payout to their bank account ,right ?
that's correct
Thank you so much !
your code will transfer funds to userExpressAccountId
and funds will be automatically paid out on the payout schedule for userExpressAccountId
You have saved my day !Have a nice day ! 😄
You too!
Ahhh ,one more thing ! I forget to ask . After the payout automatically paid ,how can I get the webhook ?
I mean ,when the user already have the payout in their bank account
You could listen for payout.paid with a webhook endpoint configured for Connect but that event is sent when a payout is expected to land in the connected account's bank account. It does not necessarily mean that the payout successfully landed in their bank account.
You could instead listen for payout.failed. This is sent when a payout in fact fails: https://stripe.com/docs/connect/bank-debit-card-payouts#webhooks
Thank you so much ,dose payout.paid only get detect when the transfter payout to the user's bank ,it is not able to detect if the user has already receive it or not ,right ?
I mean it dosent mean that the user has already received it in their bank ,right ?
payout.paid is sent when we have attempted to send funds to the user's bank. if a payout fails, you may receive both payout.paid, followed by payout.failed at a later time
ok ,thank you so much ! I will take a futher look at it .