#dev_tester1
1 messages · Page 1 of 1 (latest)
Can you explain a bit more about what you're trying to do?
accept the user's bank details and add that to their customer account in Stripe
what does this mean?
Essentially, I want to be able to create a new ACH payment method that uses Financial Connections to instantly verify. I would theoretically have all the information needed about the customer's bank account and I want to add that payment method to their account and process a payment. Is there a way to do that or would I need to redirect them to Stripe to accept their bank details?
Are you trying to do this for customer payments, or for setting up connected accounts?
ie, when you say "their account" do you mean a stripe customer, or actually an account?
Gotcha
So, broadly, the Payment Element supports what you describe when you enable the bank account payment method: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
For payment or setup of just an ACH bank account, you can checkout out these guides:
https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web&ui=API
https://stripe.com/docs/payments/ach-debit/set-up-payment?platform=web
Okay great, I think that last link is what I need. I'll try this out, thank you so much.