#priyan-murugan_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1250526378819059722
đ Have more to share? Add details, code, screenshots, videos, etc. below.
Hi, can you share the request id where you're seeing this issue so I can further investigate it? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
okay give me some time will get the request id
Sure!
req_iTx4Km1nxvikYb
Why are you passing 'error_on_requires_action: "True",' when you create the payment intent https://docs.stripe.com/api/payment_intents/create?
error_on_requires_action parameter is used in the Confirm PaymentIntent API , https://docs.stripe.com/api/payment_intents/confirm to determine the behavior when the PaymentIntent transitions into the requires_action state. This parameter is useful for integrations that do not handle customer actions, such as saving cards without authentication.
You would want to remove remove that parameter
we are using credit card and ach payment method sometimes to get the error we specified
'error_on_requires_action: "True" is only for testing while integration its not required for real time ?
You would want to use that parameter when cusing the confirm request, https://docs.stripe.com/api/payment_intents/confirm#confirm_payment_intent-error_on_requires_action.
if we simply charging the customer no need to pass this parameter. is this correct ?