#uhoh-paymentintent-status
1 messages · Page 1 of 1 (latest)
Is this a card payment or another payment method?
Basically, that payment isn't fully authorized yet, the customer needs to take some action to fully confirm it (hence the requires_action status). Once that action is completed, you will be able to capture the payment https://stripe.com/docs/payments/intents
It's a card payment
Is it possible to reject any card payment that requires an action to fully confirm?
👋 stepping in
You want any PaymentIntent that requires 3DS to error?
What Stripe integration are you using?
Hi, what do you mean by Stripe integration?
Yeah, I would like any payment intent that goes into require_action to be considered an error, or just reject it
Okay well in that case you can set errors_on_requires_action: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-error_on_requires_action
But why do you want this?
because i'm not too sure how to handle the case where a payment intent transitions to require_action
uhoh-paymentintent-status
Right well happy to help with that instead of just erroring, it will be better for your conversion.
How are you confirming the PaymentIntent currently? Server-side?
Yes, server-side. I create a payment intent with confirm=true on the server-side