#anjan_05618
1 messages · Page 1 of 1 (latest)
Hello! HAve you read through these docs yet? https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web&ui=API
Typically with ACH debit + Financial Connections for payment, you don't need to deal with the Financial Account object directly, we create it for you
Hey, thanks for the link.
For my use case, I'm trying to collect bank information from the user first so that we have it on file, and then over time allow the user to use that information on file to authorize debits. Is the way to do that still to create a PaymentIntent first?
No, you'd want this guide instead - https://stripe.com/docs/payments/ach-debit/set-up-payment
Instead of using a Payment Intent you'd use a Setup Intent so you don't have to collect payment up front
I see. Does the stripe.collectBankAccountForSetup call automatically use the Financial Connection UI that enables the user to log in with their credentials to their financial institution?
yup! that's the idea 🙂
Great, that's really cool. Let me try to prototype that and see if that works.