#Bilal Ahmed
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
these are the Bank Debits PMs supported at Stripe https://stripe.com/docs/payments/bank-debits
actually i want an API, where we'll send customers account number, routing number, holder name & bank type to add customer's payment method.
whenever customer purcahse something, we'll charge customer from his bank account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
but it's not really the recommended way
https://stripe.com/docs/api/customer_bank_accounts/create
from where I can get a source token, as I am not using Stripe.js
I want to get the required params from the client on the custom form. can create that source token by my own?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hi! I'm taking over from my colleague. Please, give me a moment to catch up.
Sure
Do you mean you want to provide it yourself? Not collect from the customer?
Sorry for delay, it's busy today
Please delete your secret key!
And roll the keys in your Dashboard.
I deleted the message for you.
In what country are you planning to collect bank accounts?
Thank you, but it was not my keys, I found that code in stripe documentation
USA
The Stripe docs display your own test keys in examples when you are logged in ๐
You can use ACH Direct Debit to accept bank payments in the US. You can read more here: https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web&ui=API
Opps sorry
this link seems like, a checkout method.
In my case. I'll create a payment method for a customer when he/she creates his/her profile. After completing the profile, whenever he/she orders something, we'll directly charge from his/her bank account.
What do you mean by "a checkout method"?
here is brief summary of my application
I am currently working on developing a web application that allows customers to add their preferred payment methods. Within the application, we will charge customers using their added payment methods and send the charged amount to the respective merchants.
Here's a summary of what I already know:
- I am knowledgeable about how to add card payment methods to the application.
- I am familiar with payment intents, which enable us to handle payments securely.
- I understand the concept of transfer groups, which help us manage funds distribution between different parties involved.
- I know how to integrate Stripe Connect to facilitate payments for merchants.
- I am capable of creating payouts for merchants based on transactions.
However, the only aspect that I'm currently struggling with is how to implement the addition of customer bank accounts as a payment method. This functionality would allow us to charge customers using their linked bank accounts.
I mean, customers add some product to their cart, then we show the checkout screen, where customers provide their card number.
I understand. It seems like you need SetupIntents. This is a way to add Payment Methods without immediately charging it: https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements
Please let me know if this sounds like what you're looking for.
In the previous version of our app, customers were able to add their payment method by manually entering their card details, including card number, expiry date, and CVV. Once the payment method was added, we would charge the customer from that card whenever they created an order.
In the current version of our application, we have introduced a new feature that allows customers to add their bank account as a payment method. Instead of entering card information, customers can now provide their bank account details using a custom form. The form includes fields for account number, routing number, account type, and account holder's name. By using this information we want to add the customer's Bank type Payment Method
By offering this option, we aim to provide greater flexibility and convenience to our customers by allowing them to choose between using a card or a bank account as their preferred payment method within our app.
Can I achieve this goal by using SetupIntent?
what bank account type? ACH for US, SEPA for EU, something else?
then sure, you can use SetupIntents for all this
https://stripe.com/docs/payments/ach-debit/set-up-payment?platform=web is how to save ACH bank details for future use
can we use SetupIntent while charging customers using PaymentIntent?