#vibhav-3ds
1 messages · Page 1 of 1 (latest)
hello @hollow prairie! you can enforce it on the PaymentIntent by passing in payment_method_options.card.request_three_d_secure=any [0][1]
[0] https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_options-card-request_three_d_secure
[1] https://stripe.com/docs/payments/3d-secure#manual-three-ds
So what ll happen if the card does not support 3ds?
in that case the transaction ll go through or it ll fail?
When you set request_three_d_secure to any, Stripe requires your customer to perform authentication to complete the payment successfully if 3DS authentication is available for a card. If it’s not available for the given card, the payment proceeds normally.
you're welcome!