#[LBG] India-confirm-error
1 messages ยท Page 1 of 1 (latest)
Can you provide the request ID of that request?
We are trying to use this :
In test environement with the card that requires 3DS authentication
But we have the error in the screen shot
It is a payment intent on a standard connected account
Might be the cause of the infound error
Those are two different errors, but it seems like something is mixed up with IDs somewhere.
Are you defining the connected account, via the stripeAccount parameter, when initializing Stripe.js?
https://stripe.com/docs/js/initializing#init_stripe_js-options-stripeAccount
That's exactly what I was not doing
testing..
Do you have a sample to init with the StripeAccount option?
Should look like this:
stripeAccount: 'acct_XXX'
});```
Thanks that worked
We confirm the PaymentIntent, then HandleCardAction
But we have th error in the screenshot
I thnk we have to confirm pi_ again
Hm, based on the error it looks like you may want to use confirmCardPayment instead of handleCardAction.
Ok let me try
Do we have to do the HandleCardAction still ?
Or juste confirm card payment ?
If you're doing entirely client side confirmation you should only need confirmCardPayment -- handleCardAction is used when confirming payments server-side that then need additional authentication
Ok we finally made it
With confirmCardPayment
in the workflow, do we need to confirm the pi_, then confirmCardPayment and finally confirm pi_ again
Or just confirm pi_ and confirmCardPayment
If you're using automatic confirmation (the default) then there is no need for an additional call
pi_3KmJ7XPwEydAYQyU1ivlJoAY
Can ou please check this test pi_ and tell if it is good behavior or not please ?
Just to be sure
Yep, that used automatic confirmation ๐