#BilalSaeedAlam
1 messages · Page 1 of 1 (latest)
Hi there
Sounds like you want to follow our flow for setting up an ACH Debit PaymentMethod. See: https://stripe.com/docs/payments/ach-debit/set-up-payment
@fierce hatch in this article the are creating Payment Intent first and the customer id and then these things are using at the end for payment.
What i want:
1- Took Customer (Account Number, Name & Routing Number on Frontend )
2- With Strip API i will seculy convert this detail into and Token Id
3- Send this token ID to backend server to create Customer ID
4- And then i will store that customer id into database for future transactions.
Could you please help in this
So the above does do that. You use a SetupIntent, not PaymentIntent, to collect the bank account info from your Customer. Then you can save it to your database and charge it later.
Okay I will try it, with Setup Intent.