#cpontes-glofox-sca-exemptions
1 messages ยท Page 1 of 1 (latest)
Thanks! Take your time
Ok, so what you're asking is not possible -- when you use off session you will never get a requires_action status
This is by design, because you're indicating your customer/cardholder is not available for handling that action
If the issuer decided they wanted 3ds for that payment, it would be a decline with code authentication_required
in that case you know to contact your customer, get them on session, and try again with an on session payment
you can use the same payment method and re-confirm the payment intent client-side using eg confirmCardPayment
awesome, thanks for clarifying @tranquil halo
Does that mean that even with the failure, we could use the client secret from the response and reach out to the customer on an email with a link to a page that uses Stripe.js and the client secret to confirm the payment?
So basically saying:
- If status is
requires_payment_method - Trigger a confirmation email to bring the customer OnSession and trigger Stripe.js with the same clientSecret from the response
Is this correct?
correct, you can do that ๐