#Sergei Frolov
1 messages · Page 1 of 1 (latest)
Hi 👋
Separate Charge & Transfers is a Connect funds flow that allows you to send funds to multiple accounts.
https://stripe.com/docs/connect/separate-charges-and-transfers
Can I do it when got response from stripe success charge?
You will need to set up your code to perform these actions but you can listen for the charge.succeeded event https://stripe.com/docs/api/events/types#event_types-charge.succeeded and then trigger your code to generate the transfers.
You would not create a Payment Intent after the charge. The Payment Intent is how you collect the payment in the first place.
You can create the transfers as long as you know which accounts the funds should be transferred to.
Where can I add transferGroup for subscriptions?
Or can I send transfer without transferGroup?
You don't have to use the transfer_group parameter but it is recommended to link transfers to specific payments on your acount.
You can update the Payment Intent related to the Invoice to add the transfer_group https://stripe.com/docs/api/payment_intents/update#update_payment_intent-transfer_group