#kirill_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/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.
- kirill_api, 2 days ago, 12 messages
hi there!
hi!
what do you mean exactly by Bank Transfer? ACH payments?
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
https://api.stripe.com/v1/elements/sessions?deferred_intent[mode]=payment&deferred_intent[amount]=6262&deferred_intent[currency]=eur¤cy=eur&key=pk_live_***&type=deferred_intent&locale=fi&referrer_host=www.cronvall.fi&stripe_js_id=008dd84f-91d7-4a91-a135-c1e14c61888e this req I guess is what the PaymentElement uses to get the method info
and that's all I get
sorry for the delay, looking into this
๐ taking over for my colleague. Let me catch up.
thanks!
this is what you're looking for https://docs.stripe.com/payments/bank-transfers
what do you mean by that?
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?
taking a alook please give me a minute
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
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']
}
oh, thx, will try!