#mark.simpson
1 messages · Page 1 of 1 (latest)
Hello! You'd need to create a SetupIntent on the platform account to collect the payment details / create the payment method. After it's created you can clone the PaymentMethod (https://stripe.com/docs/payments/payment-methods/connect#cloning-payment-methods) to the connected account and use it with a PaymentIntent
Interesting. So the SetupIntent will handle Apple/Google and any actions needed as a PaymentIntent would? So 1) use SetupIntent to gather data & create PaymentMethod at platform level then create PaymentIntent at connected account with cloned method and confirm? And once the SetupItent was done then the rest could be done in the backend?
You can guarantee that the rest of it can be done in the backend because there's always the chance an SCA/auth exemption is rejected by the bank and they want the user to re-auth, but yes, using SetupIntents is the best way to minimize that happening