#kmbro - React Elements
1 messages ยท Page 1 of 1 (latest)
Hi there
So you've got a few options. You can allow us to send an email that will direct them to verify the account.
If you don't want us to send the customer an email you can get the redirect UL from the the next_action property shown here:
https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web#web-verify-with-microdeposits
OR
you can verify with micro deposits client side, which is also shown on that doc
taking a look
It looks like those docs with next_action use the confirmUsBankAccountPayment api
I am actually just collecting the payment method for later use, so I am using the confirmSetup JS api -- and I don't see the next_action anywhere in the how to collect for later docs https://stripe.com/docs/payments/save-and-reuse?html-or-react=react
How can I confirm the bank account if I use the setupIntent?
That's because that doc is not ACHv2 specific. Take a look at this one: https://stripe.com/docs/payments/ach-debit/set-up-payment
Looking now
Is there any way to send the email for confirming a manually entered ACH account in the test environment?
Not in a Test environment. Stripe does not send emails in Test mode. You can create a test email manually in your integration if you want to test that.
sorry, not sure what you mean by create a test email manually, can you clarify?
Stripe won't send an automatic email.
If you want to test sending an email that is a function you could build into your app. You could collect the URL from the next_action property and include it in the email to handle account verification.
Ah I understand now. Thank you!
Sure thing! Happy to shed what little ๐ก I can ๐