#manasa_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/1324846784975081502
๐ 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.
- manasa_api, 1 day ago, 5 messages
Hello, have you double checked that the bank payment method is turned on in your payment method settings https://dashboard.stripe.com/test/settings/payment_methods
Also are you trying to accept an ACH payment? Or something else?
this is for ACH
and requestid: req_7H1FQBjE6bR1DE
added this
form.addEventListener('submit', async (event) => {
event.preventDefault();
const { error, setupIntent } = await this.stripe.confirmSetup({
elements: this.elements,
confirmParams: {
return_url: returnUrl
},
redirect: 'if_required',
});
as shows in the documentation but it shows card details UI for adding ACH details
Right now, we're only trying to collect the account information for future payments.
@unique glacier , I work with @grizzled hazel . ๐
Just to give you some context: This particular view should collect only Bank Accounts.
Gotcha, still looking in to this. I see that ACH is turned on in your settings but I am not seeing why it is excluded. Can you try that call again with payment_method_types=['us_bank_account'] and see if that errors out?
Because you are currently running this without setting payment_method_types, we refer to your default settings, which has a couple of other payment methods turned on, which is why we included other types for that intent.
Is that the first call that creates the SetupIntent?
Whoops yes, add that to the call to create the setup intent
Thanks, we'll try that.
I will update that shortly
@grizzled hazel just checking in. Have you been able to test? I am able to create a Setup Intent that includes us_bank_account with the same parameters and am not quite sure what we are doing differently.