#fpolliop
1 messages · Page 1 of 1 (latest)
Not possible today I'm afraid. You'd need a unique session per seller/connected account, or use separate charges and transfers to facilitate moving the money to multiple accounts
Got it, Is it possible to use separate charges and transfers with checkout sessions?
Yup. No specific docs for that flow with Checkout, but you'd just create the session as normal then create the required transfers post-payment (in a webhook or something): https://stripe.com/docs/connect/separate-charges-and-transfers
Ok, cool. Should my payment_intent_data object be null then? Since I don't have a destination account and inside the transfer_data object and the application_fee_amount will be transfered later in the webhook?
Yep you can omit those Connect specific parameters as they'll be applied on the transfers retrospectively
Cool, thanks!