#geekymechanic
1 messages · Page 1 of 1 (latest)
No unfortuantely not
You'd need to create payment intents on each separate connect account for their cut
So up to you if that's feasible with your integration
Hmmm could you help enlighten me on the implications of this? Would this mean that the user would have to pay multiple times?
Not necessarily
You could collect payment method once for the customer on the platform via setupintent
Then use cloning to clone them to all the connect accounts: https://stripe.com/docs/connect/cloning-customers-across-accounts
And then just create payment intents serverside on each account to charge them multiple times
But that may or may not be more hassle than you want to deal with
Thanks for the tip, I'll read more on this, the user would then see multiple charges on their credit card right? And by doing this the money would be wired directly to the connected accounts so I wouldn't have to collect then pay out?
Hello! I'm taking over and catching up...
Have you looked at separate charges and transfers (assuming you're using either Express or Custom connected accounts)? https://stripe.com/docs/connect/separate-charges-and-transfers
Oh, you mentioned you don't want to handle refunds and disputes, so that means Standard accounts, which means that won't work for you.
Never mind!
I see, could you tell me more about this?
Yep, what you said is correct.
Multiple charges, and the charges would be on the connected accounts, not your platform account.
You can optionally take an application fee.
Flow looks like this: https://stripe.com/docs/connect/direct-charges#flow-of-funds-with-fees
Then the net at the end could be paid out once it becomes available.
I guess this is my best option right now to fill my criterias?
Yep, sounds like it.
Okay cool thanks I'll try going that way and see how it goes, thanks for the rapid response as always!