#manasa_api

1 messages ยท Page 1 of 1 (latest)

pine lakeBOT
#

๐Ÿ‘‹ 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.

unique glacier
#

Also are you trying to accept an ACH payment? Or something else?

grizzled hazel
#

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

latent minnow
#

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.

unique glacier
#

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.

latent minnow
#

Is that the first call that creates the SetupIntent?

unique glacier
#

Whoops yes, add that to the call to create the setup intent

latent minnow
#

Thanks, we'll try that.

grizzled hazel
#

I will update that shortly

unique glacier
#

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