#ihor_api

1 messages · Page 1 of 1 (latest)

covert bayBOT
#

đź‘‹ 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/1379170121205157991

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

visual egret
#

Hello
When you say "Pay by Bank", are you referring to ACH direct debit?

#

If so, Mobile Payment Element (PaymentSheet) supports ACH DD out of the box

calm spire
#

no, no I am referring to https://docs.stripe.com/payments/pay-by-bank. If I understand correctly, ACH Direct Debit implies that a fixed amount of money will be withdrawn from the customer’s account on a regular basis, for example once a month.
Pay by Bank, on the other hand, means that the customer’s banking app is opened with my account details and the payment amount pre-filled, and the customer only needs to confirm it with a single tap. However, each transaction is one-time and not recurring.
Maybe I am wrong and you correct me. Pay by Bank works only inside the UK

visual egret
#

Ah gotcha. This is a different payment method type from ACH - yes.

Unfortunately, it isn't currently supported in Mobile Payment Element. Also, unsure if we have any support for this in our Mobile SDK. Let me check..

#

Yeah I don't believe this is supported via our Mobile SDK.
This payment method is only limited to Web integrations only (you maybe able to implement a webview of some sorts that will support the flow outside your application)

calm spire
#

Yes, yes, I thought about this. Will I need to produce 2 different payment intents, one for the Payment Sheet (cards + Apple Pay), and the second is for only Pay by Bank? The issue is that if I use a shared PaymentIntent for the web version, it will also offer card payments in the web interface. I would prefer not to deviate from using the PaymentSheet in the mobile app, as it works perfectly for card payments.

visual egret
#

Yeah in this case, you'd need to create a separate intent with that specific payment method type.

calm spire
#

Got you, thank you so much