#ayush_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/1415362076875952181
đ 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.
- ayush_custom-connected-account, 17 hours ago, 45 messages
Hi there
Can you share the checkout session id where you're getting this issue?
Also where specifically are you seeing the No such payment_intent: 'pi_3S5pkJEOiaSHX5Kv1aQIL7MI'. error
This is the response:
{
"error": {
"code": "resource_missing",
"doc_url": "https://stripe.com/docs/error-codes/resource-missing",
"message": "No such payment_intent: 'pi_3S5pkJEOiaSHX5Kv1aQIL7MI'",
"param": "intent",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_Rm8lxea009kzJb?t=1757519165",
"type": "invalid_request_error"
}
}
This is the Request URL:https://api.stripe.com/v1/3ds2/authenticate
Response:
{
"error": {
"code": "resource_missing",
"doc_url": "https://stripe.com/docs/error-codes/resource-missing",
"message": "No such paymentattempt: 'payatt_3S5pkJEOiaSHX5Kv1HYMvzQB'",
"param": "payment_attempt",
"type": "invalid_request_error"
}
}
That first request is a request to retrieve a payment intent. Not coming from checkout
What's the request id for the second one?
Here is the session: id: 'cs_live_a15Sg5KV5AYPzndhzz0e0ekdIrMhYn177LcBt8oHQBu8m3tvDhmMWJLdIo',
Is that what you wanted or is it something else?
These two request URLs are where the errors are coming from.
The issue is basically there is no 3D secure redirect/pop up thats coming when I click pay in my Embedded Checkout
Thus it automatically fails
I know that the rest of it works as when I get the session.url and redirect and pay from there the 3D secure pop up appears where it asks for a OTP and then processes the payment
The first request is coming from your server
The second request I assume is from your browser? You're getting that from the dev console?
If you have access to my account P2, you can see the transactions there, this is the error:
3D Secure attempt incomplete
The cardholder began 3D Secure authentication but has not completed it.
Sep 10, 2025, 10:45 AM
Ah ok I think I see what's happening here
So the checkout session was created on acct_1S46zfEOiaSHX5Kv which is your platform account in live mode. Here's the creation request: https://dashboard.stripe.com/logs/req_agg4q9mZRMlX34
But the frontend requests are being made with the publishable key of your sandbox account: acct_1S4Uq2EKBDBWG4Io
So you need to make sure you are using the publishable key that matches the right account in the frontend