#CasuallyCaffeinated

1 messages · Page 1 of 1 (latest)

merry crestBOT
covert gust
#

Let me know if I need to clarify what I meant

quartz path
#

Hi 👋 yeah, a little bit of clarification will help. Are you asking if we provide you with the name associated with a bank account that is added as a payment method?

covert gust
#

Yeah, pretty much. Using the traditional verification method, we're able to pass in a value from our form. We called this value accountHolderName which is the name the user inputted in the form that they wish to associate with their account.

Using the Stripe Financial Connections modal, it seems that it doesn't quite allow the user to input a unique name. Instead, it requires us to pass in a name in the function call. To that end we opted for passing in the user's first and last names.

            clientSecret,
            params: {
                payment_method_type: 'us_bank_account',
                payment_method_data: {
                    billing_details: {
                        name: `${user?.firstName} ${user?.lastName}`,
                        email: user?.email,
                    },
                },
            },
        });```
As you can see here. However, I wished to confirm that they isn't a way to allow a user to input their own custom name that they wish to associate with the bank account, right? 

We just have to assume that the name associated with the bank account needs to be the full name of the user who instantiated the stripe financial connections process, no? 

Hopefully this makes my question a bit more clear, but let me know if it doesn't
quartz path
#

As far as I know the flow will use the name that you provide.