#siddarth_api

1 messages ¡ Page 1 of 1 (latest)

rocky martenBOT
#

👋 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.

clever trench
#

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?

valid quail
#

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

clever trench
#

You should just check the setupIntent's status and see if it's succeeded .

valid quail
#

actually I want to check the status of setupintent based on the paymentmethodid. for verify microdeposit

clever trench
valid quail
#

can i dirently filter setupintent based on the paymentmethodid instead of list and then filter

clever trench
#

No, there's no API to return a SetupIntent directly from a payment method ID, you need to use the list API.

valid quail
#

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?

clever trench
valid quail
#

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

clever trench
valid quail
#

actually I am looking for paymentintent is succesful or not for ach

clever trench
#

Sure, then paymentIntent's status should give you the answer.

valid quail
#

UsBankAccount = new PaymentMethodUsBankAccountOptions
{
AccountNumber = BankAccountNo,
RoutingNumber = BankRoutingNo,
AccountHolderType = "individual",// change the hard coded value
AccountType = Account.enumAccountType.ToString(),
}, is the AccountHolderType mandatory param?

clever trench
valid quail
#

then if i do not pass tis param, getting an error