#xaositect_financialconnections-token
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/1237088391825330306
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
xaositect_financialconnections-token
@soft stratus what exact doc are you following and can you share your exact code, how you reproduce and what the response look like? Because you say it's null but then you get an array of accounts so I'm not really following your train of thought
Sorry, let me see if I can be more clear.
so, first I'm creating a financial connections session in my API layer
Which exact end to end doc are you following? Because this is not really a main doc and if you are migrating entirely it's best to start with the most common integration path
Without being offensive, It has been really hard to find an end to end doc that fits our use case
No offense at all, I kinda agree with you ๐
So let's take a step back because you likely went down the wrong rabbit hole/path.
What are you really trying to do right now? Just accept a payment from someone using FinancialConnections and nothing else? Or offer FinancialConnections and other payment methods like card and such?
The flow we're trying to replace is something like this:
- User is presented with an invoice on our platform
- User selects they want to pay it with ACH
- User is hooked up with a plaid modal that looks remarkably like your stripe ACH modal
- User selects their bank account, we get a token back from plaid
- We add the token to the user's stripe customer, and attempt to pay the invoice
We have a separate card flow that seems to transition to payment intents / payment methods much more easily.
Does that clarify the matter at all?
It does help a bit but: have you considered just offering all payment methods in the same UI?
It would drastically simplify your integration really
I hadn't considered it mostly because I was attempting to do a 1 to 1 conversion, but... I am quite willing to.
Have you seen https://docs.stripe.com/payments/payment-element?
That offers all payment method types you want to support and that includes FinancialConnections for ACH Debit to replace plaid. It works with Invoices and would be such a simpler integration for you
Hmmm, okay, I'll give it a shot. Thanks for the redirect!
Would it allow users to select previously added payment methods?
It doesn't by default though you can build that UI easily. We also have an ongoing beta for that exact feature inside PaymentElement which you can get access to by emailing payment-element-beta@stripe.com
Okay, well I will take a look. Thanks for helping us move... closer... to the current API.