#BilalSaeedAlam

1 messages · Page 1 of 1 (latest)

shell crystalBOT
steady moss
#

So the actual verification if you use that flow should be done through stripe.js

#

Which is secure

#

But if you want an element, ACH Debit is supported in the payment element

coral notch
#

Okay so you mean i can use custom elements like this?
<form id="payment-method-form">
<input type="text" id="account-holder-name-field" placeholder="Account Holder Name" />
<input type="email" id="email-field" placeholder="Email" />
<button type="submit">Submit</button>
</form>

steady moss
#

Yeah

#

Or the Payment Element

coral notch
#

Okay, further should i take Routing number and account number with it?

steady moss
#

No

#

Just follow the guide

coral notch
#

And what will the key values in this

stripe.collectBankAccountForSetup({
clientSecret: clientSecret,
params: {
payment_method_type: 'us_bank_account',
payment_method_data: {
billing_details: {
name: accountHolderNameField.value,
email: emailField.value,
},
},
},
expand: ['payment_method'],
})

#

Okay

steady moss
#

Don't understand the question

coral notch
#

Basically i was assure that when we do ACH payment we need routing number and account number, but if you say than i don't need it.

steady moss
#

All other required info is collected through stripe.js if you follow the guide

#

You can try it out in test mode

coral notch
#

Alright