#kirill_api

1 messages ยท Page 1 of 1 (latest)

high siloBOT
#

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

๐Ÿ“ 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.

unkempt widget
#

hi there!

idle valve
#

hi!

unkempt widget
#

what do you mean exactly by Bank Transfer? ACH payments?

idle valve
#

this one

#

it might be the wrong method though, if so pls tell me which one do I need ๐Ÿ™‚

#

I want my customers to be able to transfer the payment using their bank

#

according to the dashboard, ACH is something popular in the States, but I'm in Europe, so I might need something else

#

and that's all I get

unkempt widget
#

sorry for the delay, looking into this

high siloBOT
hasty ice
#

๐Ÿ‘‹ taking over for my colleague. Let me catch up.

idle valve
#

thanks!

hasty ice
idle valve
#

yes, I think it is

#

how do I check is there's some info missing?

hasty ice
idle valve
#

i mean... i see this method being turned on in the dasboard (see the pic above), but it's not added to the paymentelement, so how do I check where's the issue?

hasty ice
#

taking a alook please give me a minute

hasty ice
#

sorry for keeping you waiting that long

#

what you're doing here is a deferred flow, where you start by collecting the payment method then creating the intent

#

since the bank transfer payment method needs a customer and the deferred flow doesn't provide a way to specify one, the customer_balance payment method is removed from the valid payment_method_types

#

I hope this clarifies things out

high siloBOT
eternal elm
#

Hey! Taking over for my colleague.

#

Just to complete here what was said previously, if you want absolutely have Bank transfers as a Payment Method in your integration

#

then you can pass it as an option using paymentMethodTypes, something like this:

options = {
  mode: 'payment',
  currency: 'eur',
  amount: 1099,
  paymentMethodTypes: ['customer_balance']
}
idle valve
#

oh, thx, will try!