#tymm_best-practices
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/1346677965773082676
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi! Does user triggered failed 3ds refer to a customer failing to authenticate?
yes
What does code triggered 3ds required mean?
triggered by stripe like recurring payments
but i think i found it. i am actually looking for an indicator like this
payment failed due to 3ds triggered by customer
"invoice": "in_1Qz8IoLouXJU4FDJny2HDPUZ",
"last_payment_error": {
"charge": null,
"code": "payment_intent_authentication_failure",
"decline_code": null,
"doc_url": "https://stripe.com/docs/error-codes/payment-intent-authentication-failure",
"message": "The provided PaymentMethod has failed authentication. You can provide payment_method_data or a new PaymentMethod to attempt to fulfill this PaymentIntent again.",
vs
payment failed due to 3ds triggered by recurring payments
"invoice": "in_1Qz8IoLouXJU4FDJny2HDPUZ",
"last_payment_error": {
"charge": "ch_3Qz8ItLouXJU4FDJ0CjxOXvk",
"code": "authentication_required",
"decline_code": "authentication_required",
"doc_url": "https://stripe.com/docs/error-codes/authentication-required",
"message": "Your card was declined. This transaction requires authentication.",
Nice! Does this answer your query?