#shalu-kumari_api
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/1285525058709884992
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
error like this how can resolved this issue is they way to succesful payment done with postman collection using ach method?
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 site 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.
here is the requestId req_YD3coUkBLXWtn5
taking a look
let's take the problem in another way
instead of trying to fix the issue with the flow that you're currently doing
I think the best thing here is to redesign the flow with the recommended integration
maybe the reason why you're having this much trouble is that you're creating the payment method using the POST /v1/payment_methods API method
if your app does not contain a front-end (for some reason) you can directly create the PM while creating the SetupIntent
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
this way the created SI would create the PM and attach it directly to the customer you're passing
then you could use it with the PaymentIntent
or you could simply set the setup_future_usage on the PaymentIntent which is actually a lot easier