#krystsina_87113
1 messages · Page 1 of 1 (latest)
Generally speaking you should just use the Payment Element, as opposed to this ACH specific guide
But overall those are just HTML <form> elements that have submission buttons and handlers to trigger the Stripe.js functions
ACH is a completely hosted flow so you don't really need to display any form fields
Will PaymentElement render the form for me?
Yep! Take a look here: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
Also means you can have multiple other payment methods (cards, wallets) in a single form
thanks! can I configure it to show only US bank account form and no others (like card, klarna, etc.)
Yep, sure. You'd just specify payment_method_types when you create your Payment Intent
And the Element will only render those types
got it! and the user authorization will be done too using PaymentElement, right? so we need only to send confirmation to stripe on form submit, correct?
Correct.
Thanks for the help!
Happy to help.