#wayo_3ds-questions
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1220123793087795240
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, requires_action status means that the issuing bank asked for additional authentication for the payment to move forward. For instance, for card payments this authentication is called 3DS: https://docs.stripe.com/payments/3d-secure. If you're using our Payment Elements, Stripe displays a modal for this authentication: https://docs.stripe.com/payments/quickstart#complete-payment-html. After the customer completes the authentication process, they’re redirected to the return_url.
If im using the payment element, will the modal simply go away and return a response from the function or will it redirect to the return_url? If it returns to the redirect_url , what do I need to do to check the response?
We document about this here, https://docs.stripe.com/payments/quickstart#show-status-message. After the redirect, payment_intent_client_secret query is appended, and you can use that to retrieve the Payment Intent's status and determine what you choose to show to your customer.
So the intent finished processing but we need to retrieve it in order to get a successful response or an error ?
Yes, that is correct.
https://docs.stripe.com/payments/3d-secure/authentication-flow#three-ds-cards
In the table where the card ends in 3055 it says: 3DS authentication can still be performed, but isn’t required
Does this mean I can "turn off" authentication and try to take the payment?
Yes, that test card supports 3DS but not required. What are you specifically trying to test now?
I'm wondering if we can "turn off" authentication for real payments or is this not possible?
Hmm, that depends on what you mean by '"turn off" authentication'. Like, there is not a setting that you toggle to disable 3DS. Even if you could, the Issuing banks may still ask for 3DS autentication.
However, are you asking if you can handle 3DS manually on your end?
Or, something else?
wayo_3ds-questions