#valdo99

1 messages · Page 1 of 1 (latest)

eager oasisBOT
last wren
#

Nope, you need to create a new PaymentIntent.

analog osprey
#

so there is no way to let the user do the 3ds only once?

#

and not for each merchant?

#

for each "connected account"

last wren
last wren
# analog osprey and not for each merchant?

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

analog osprey
#

ok, but how everybody handles subscritions, (without using subs api from stripe)

#

do stripe asks for 3ds ?

#

never happend to me

last wren
analog osprey
#

yes sorry

#

never happent to me that banks requesting 3ds for subscription tbh

last wren
#

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?

analog osprey
#

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

last wren
#

can you share some example ?

analog osprey
#

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

last wren
#

Why you want to clone the PaymentMethod then ? what type of charges are you willing to use in your Connect integration ?

analog osprey
#

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

last wren
#

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

analog osprey
#

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

last wren
#

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

analog osprey
#

but hen we'll ne responsible for fees - refunds ....

#

ok i understand, thanks

last wren
#

Np!