#rangermillze_3ds-subscription-update
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/1303725673306652745
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- rangermillze_api, 23 hours ago, 20 messages
- rangermillze_api, 1 day ago, 31 messages
you could add off_session: true to your Subscription udpate call to request some exemptions form the bank: https://docs.stripe.com/api/subscriptions/update#update_subscription-off_session
With a non 3d Card th epaymenet is made automatically. But with 3d Secure I dont want to enable addons if payment is going to fail. When the ajax call comes back to the client can I execute stripe.confirmPaymentIntent without showing the stripe payment element and as such just show the "3d secure" screen for the user to authenticate payment?
But with 3d Secure I dont want to enable addons if payment is going to fail.
you can use pending updates for this: https://docs.stripe.com/billing/subscriptions/pending-updates
can I execute stripe.confirmPaymentIntent without showing the stripe payment element
absolutely: https://docs.stripe.com/js/payment_intents/confirm_card_payment#stripe_confirm_card_payment-attached
cool, i'll give these a try Soma. So the checkout process I want to accomplish is 1. Client select subscription and pays for is using 3d secure. 2. Client mid term decides to add additional item to subscription. 3. Client selects item and is then presented with the 3d secure for the payment method used to update the subscription. Is this achievable?
jsut to clarify:
- you should add
off_session: trueto your udpate call, this will lower the amount of time 3DS is requested - if 3DS is requested, then you need to tell your user to come to your website/app, and call https://docs.stripe.com/js/payment_intents/confirm_card_payment#stripe_confirm_card_payment-attached
awesome, that sounds just right! thanks for your support again soma!
happy to help ๐