#siddarth_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/1313372510774890538
đ 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.
- siddarth_api, 18 hours ago, 14 messages
- siddarth_api, 3 days ago, 8 messages
- siddarth_api, 3 days ago, 21 messages
- siddarth_api, 3 days ago, 13 messages
- siddarth_api, 4 days ago, 14 messages
- siddarth_api, 4 days ago, 71 messages
and 3 more
Hi there, I'm not sure about what you mean by "status of next_action". Can you tell me what's the primary objective that you want to achieve?
Ok, I have created a setup intent and confirm the setupinet as SetupIntent setupIntentResult= setupIntentService.Confirm(setupIntentResult.Id, confirmOptions); now I am checking this status setupIntentResult.NextAction?.Type == "verify_with_microdeposits", it is showing this status correctly. I want to check this status in different call. Like I want check this status later, if it is verifed then only allow payments else show some alert message
You should just check the setupIntent's status and see if it's succeeded .
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
actually I want to check the status of setupintent based on the paymentmethodid. for verify microdeposit
https://docs.stripe.com/api/setup_intents/list#list_setup_intents-payment_method this is the API that you can call to retrieve the SetupIntent that's associated with a given payment method ID
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
can i dirently filter setupintent based on the paymentmethodid instead of list and then filter
No, there's no API to return a SetupIntent directly from a payment method ID, you need to use the list API.
SetupIntent setupIntent = setupIntentService.Confirm(setupIntentResult.Id, confirmOptions);
once I confirm the setupintent, the stripe will automatically send an email to customer correct?
which includes hosted verification url to verify the microdeposit?
Yes Stripe will send out an email if the customer provides a email address, or you can send the email manually. See https://docs.stripe.com/payments/ach-direct-debit/accept-a-payment?web-or-mobile=web&payments-ui-type=direct-api#optional:-send-custom-email-notifications
How to do get the status of the payment for ach, which is in processing and i want to check the status later if it is processed or not? how to do this
https://docs.stripe.com/api/payment_intents/object#payment_intent_object-status Check this property to get the status of the payment
https://docs.stripe.com/payments/ach-direct-debit/accept-a-payment I'll also highly recommend you to refer to this doc for full integrationg guide
actually I am looking for paymentintent is succesful or not for ach
Sure, then paymentIntent's status should give you the answer.
UsBankAccount = new PaymentMethodUsBankAccountOptions
{
AccountNumber = BankAccountNo,
RoutingNumber = BankRoutingNo,
AccountHolderType = "individual",// change the hard coded value
AccountType = Account.enumAccountType.ToString(),
}, is the AccountHolderType mandatory param?
https://docs.stripe.com/api/payment_methods/create#create_payment_method-us_bank_account-account_holder_type the API reference doesn't say it's required
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
then if i do not pass tis param, getting an error