#BilalSaeedAlam
1 messages · Page 1 of 1 (latest)
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
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>
Okay, further should i take Routing number and account number with it?
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
Don't understand the question
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.
All other required info is collected through stripe.js if you follow the guide
You can try it out in test mode
Alright