#hugues_acss-debit
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/1381734573431328959
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello, looking in to this. What form is asking for username and password? Is this the financial connections modal that pops up from the payment element? Or something else?
hugues_acss-debit
@mellow wagon the UI you are seeing is so that they can connect their bank account to Stripe directly so that you can debit them
We document it in details here: https://docs.stripe.com/payments/acss-debit
We highly recommend using that approach instead of just collecting raw bank account details (though we do support that too)
What I expect is a flow that first ask the client to accept the conditions of a mandate and then, it'd get to a Stripe form asking for the bank account information. My clients don't have a username on their bank web site.
My clients don't have a username on their bank web site.
what does that mean?
Like I said at the beginning, when using stripe.confirmAcssDebitSetup, we get a flow that first ask the acceptance of a mandate and, then, a form were the user has to enter its username and password. I assumed that this username was the one associated to their bank's web site. This is not what I want, I want a form were they just enter their bank account details.
https://docs.stripe.com/api/payment_intents/create#create_payment_intent-payment_method_options-acss_debit-verification_method you pass microdeposits in this and it will work like you expect
So, I continue to use stripe.confirmAcssDebitSetup on the client side and configure the server with payment_method_options.acss_debit.verification_method: microdeposits ?
I think so yes. I use PaymentElement locally so the call is a bit different but it should work the same way
Thanks, I'll try it.
let me know if it doesn't work