#nimish-tank_code
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/1314173731404251197
๐ 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.
- nimish-tank_webhooks, 4 hours ago, 8 messages
- nimish-tank_webhooks, 20 hours ago, 11 messages
- nimish-tank_webhooks, 22 hours ago, 9 messages
- nimish-tank_code, 2 days ago, 5 messages
- nimish-tank_webhooks, 2 days ago, 6 messages
- nimish-tank_code, 6 days ago, 12 messages
and 1 more
๐ happy to help
if the PaymentIntent is in a requires_action status you need to handle it on your own website https://docs.stripe.com/payments/finalize-payments-on-the-server?platform=web&type=payment#next-actions
I am using PHP so how to used this
Hey! Taking over for my colleague. Let me catch up.
You need a frontend to handle the 3DS action
Why are you using Billing portal between ?
i have created switch card functionality
Sorry I'm not understanding your latest follow up question.
subscription recurring payment before updating 3d card secure card but recurring payment failed
How are you letting your Customer to complete 3DS action ?
Stripe can send autoamtically an email to your customer in order to complete any required action (like 3DS)
I am using
$stripe->billingPortal->sessions->create([
'customer' => 'cus_NciAYcXfLnqBoz',
'return_url' => 'https://example.com/account',
]);
THis
{
"id": "bps_1MrSjzLkdIwHu7ixex0IvU9b",
"object": "billing_portal.session",
"configuration": "bpc_1MAhNDLkdIwHu7ixckACO1Jq",
"created": 1680210639,
"customer": "cus_NciAYcXfLnqBoz",
"flow": null,
"livemode": false,
"locale": null,
"on_behalf_of": null,
"return_url": "https://example.com/account",
"url": "https://billing.stripe.com/p/session/test_YWNjdF8xTTJKVGtMa2RJd0h1N2l4LF9OY2lBYjJXcHY4a2NPck96UjBEbFVYRnU5bjlwVUF50100BUtQs3bl"
}
this object response not fetch in test server
No billin portal isn't for completting 3DS, it's for updating PaymentMethod
Simply you can enable email from your Dashboard and Stripe will handle that for you.