#taylor-brooks-simple_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1309522096854012006
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Yeah generally you should not using Tokens at all, for credit cards or not. They're basically deprecated for most integrations
Are you saying there is not a way to use tokens for ACH transactions with payment intents?
Also, I don't see anything in Stripe's documentation that indicates tokens as "deprecated".
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Those are for payouts, not payments. If you want to accept ACH Debit payments this is the guide to follow for the new APIs: https://docs.stripe.com/payments/ach-direct-debit/accept-a-payment
Is there a way to use a bank account token with a payment intents api?
The last time I was on discord (https://discord.com/channels/841573134531821608/1306323384489218150)
I learned about passing a token to the Payment Intents API. I don't think that is publicly documented.
We use Stripe V2 and we verify US bank accounts automatically. (We pay for that).
That way we don't have to use financial connections or microdeposits or whatever.
My account setup might be more unique than what you're used to seeing.
Why are you insistent on using Tokens? Do you have existing Tokens that you wish to use with payments? Not sure what 'Stripe V2' is?
In any case, this might be helpful in the scenario where you have existing Bank Account data: https://docs.stripe.com/payments/ach-direct-debit/migrating-from-charges
I'm insistent on using Tokens because I'm trying to minimize my risk exposure.
So it sounds like I need to create a PaymentMethod first, then pass the "pm_" id to the create the PaymentIntent, is that correct?
Not sure what you mean by 'risk exposure'?
The way we are currently using Stripe for card and ACH has been that way for over 10 years, there are about 160k transactions per month that go through the current tokens / charges api flow.
In changing that code path, there is a risk of breakage. The less I change, the less I risk. The more I change, the more I risk. Capiche?
Sure, no need to be condescending though ๐
You'd create a Bank Account (ba_xxx) from your btok_xxx that you can pass to the payment_method param when creating your intents: https://docs.stripe.com/api/customer_bank_accounts/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.