#xaositect_financialconnections-token

1 messages ยท Page 1 of 1 (latest)

random veldtBOT
#

๐Ÿ‘‹ 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.

median pollen
#

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

soft stratus
#

Sorry, let me see if I can be more clear.

#

so, first I'm creating a financial connections session in my API layer

median pollen
#

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

soft stratus
#

Without being offensive, It has been really hard to find an end to end doc that fits our use case

median pollen
#

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?

soft stratus
#

The flow we're trying to replace is something like this:

  1. User is presented with an invoice on our platform
  2. User selects they want to pay it with ACH
  3. User is hooked up with a plaid modal that looks remarkably like your stripe ACH modal
  4. User selects their bank account, we get a token back from plaid
  5. 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?

median pollen
#

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

soft stratus
#

I hadn't considered it mostly because I was attempting to do a 1 to 1 conversion, but... I am quite willing to.

median pollen
#

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

soft stratus
#

Hmmm, okay, I'll give it a shot. Thanks for the redirect!

#

Would it allow users to select previously added payment methods?

median pollen
#

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

soft stratus
#

Okay, well I will take a look. Thanks for helping us move... closer... to the current API.