#valdo99
1 messages · Page 1 of 1 (latest)
Nope, you need to create a new PaymentIntent.
so there is no way to let the user do the 3ds only once?
and not for each merchant?
for each "connected account"
even on the same Account, you the bank card issuer may still request another 3ds in the future.
You can attempt to create new PaymentIntent using the PaymentMethod cloned, if the bank requested a 3DS then you need to ask the customer to authenticated their payment otherwise it'll pass
ok, but how everybody handles subscritions, (without using subs api from stripe)
do stripe asks for 3ds ?
never happend to me
No the card issuer bank is requesting the 3DS
Did you tried to clone an authenticated PaymentMethod from a Platform to a Conenct Account, create a Subscription and you got a 3DS? is this in all attempts?
also if i connect my credit card to PayPal, and i purchase something, never happend that i had to redo the 3ds with my bank
can you share some example ?
never tried to do this (clone an authenticated PaymentMethod...) to be honest
the thing is that as a platform account i do not want to collect the payment for a connected account ( so i cannot verify the payment method ? )
the thing i'm trying to do is create a checkout for the connected account, save the payment method to the platform account, then clone the pm to the connected account and the charge te pm
Why you want to clone the PaymentMethod then ? what type of charges are you willing to use in your Connect integration ?
imagine you have a customer from merchant A and then the same customer wants to buy something from merchant B, i want to let the customer buy without doing again the pm auth
for this reason i need to have a parent customer in my platform account and then children customers on each connected account
I invite you first to check this first:
https://stripe.com/docs/connect/accounts
And choose the account type that you think match to your use case then choose the type of the charges you'll be integrating:
https://stripe.com/docs/connect/charges
And choose the charge type.
From what you are saying, I think destination charge could work.... so as a PLatform you can charge the same PM for the two Connected Accounts without cloning the PM on all Connected accounts
https://stripe.com/docs/connect/destination-charges
unluckly i did see the types of connect account, and we'll be standard account.
the thing i'm trying to avoid is collecting the payment and then transfer automatically to the connected
If you will be using Standard accounts, then you should use direct-charges:
https://stripe.com/docs/connect/direct-charges
and each Standard Accounts is responsible for for Stripe fees, refunds, and chargebacks, including PaymentMethhods..
if you want to share PM between connect Accounts then you should be using Express/Customer with destination-charges
Np!