#nagenbgr-SCA-next-action

1 messages · Page 1 of 1 (latest)

hexed bobcat
#

Hey there 👋
copying this here for full context

Can you please let me know if there are any guidelines available to get past this issue? PI: pi_3KbpBTKVpb0T87Xr0zW3jwAh. I also want to be able to test Refund after this. Thanks!!

#

what is your integration currently doing?
I don't think you need to worry about next_action at all, if your integration just confirms a PaymentIntent client-side and that is it, Stripe.js will handle everything in that hash really so this isn’t an issue

quartz lantern
#

Hi Hanzo - thanks so much: my integrations needs to do the full payment cycle: Create Payement/Refund/Return/Cancel for buyers in EU zone

hexed bobcat
#

I see.
Like I mentioned earlier, Stripe.js really just handles it on its own so you shouldn't worry about the "next_action" object. All you need to do is just confirm the PaymentIntent client-side.

quartz lantern
#

Got it - thanks. For refunds, is there any SCA enforced as well..?

hexed bobcat
#

Refunds do not have SCA, no.

Ideally your flow would look something similar to the following;

  • Create a Payment Intent
  • Confirm it client-side
  • If/When 3DS is available, Stripe.js will automatically take care of redirecting the user to bank's website and bring them back to the return_url
  • That's it 🙂