#ds-dev
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
would you mind sharing the request id? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
hello @fading nexus Which request id do you want?I have problem with payment initiated on next billing cycle by subscription, like this pi_3LqrCgLG9xW7xNfn1eKfJQXn
looking into that
it's not uncommon that even when you do setup for future usage and you succeed the 3DS at setup that in subsequent authorizations the issuing bank demands also an authentication
this is something that Stripe can't really control
and that you should be able to handle
in these cases you need to ask your customer to come back to your portal and authenticate the payment on_session
usually the flow is you listen to this event https://stripe.com/docs/api/events/types#event_types-payment_intent.requires_action
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and whenever it happens you generate some sort of a link and send it to your customer and on that page you would retrieve the PaymentIntent and send its client_secret to the front-end and there you would use the https://stripe.com/docs/js/payment_intents/handle_next_action to handle the authentication
ok, clear, thank you for information and have a nice day
thanks. let me know if you need any more help
thank you