#sow - Express Onboarding

1 messages · Page 1 of 1 (latest)

rustic wolf
#

Hi.

surreal panther
#

hi

eternal palm
#

Hey there @surreal panther -- where exactly are you providing the phone number and where are you expecting it to be pre-filled and not seeing that?

surreal panther
#

We are following the step#2 in that doc for prefilling the user info

#

Expectation is prefill those two pages in the screenshot

surreal panther
#

@eternal palm - Let me know if you need any additional information. Thank you!

eternal palm
#

Hey @surreal panther -- i did some testing and digging and this is information about the person creating a Stripe account that you cannot pre-fill. You can provide the individual/company phone number but not the phone to be used for logging in to the account.

surreal panther
#

stripe is allowing to provide email, first name and last name, and there is phone number field as well, as you can see in the screenshot, email is filled in. So not sure where exactly it will show up

#

Also, what about the next screen about Business Details?

slim wave
#

Hey there 👋
stepping in for synthrider as they had to step away

surreal panther
#

ok thanks @slim wave

slim wave
#

As far as my understanding goes, the phone number will only be prefilled after user authentication which means you cannot prefill a phone number for completely new user.

surreal panther
#

ok what about the Business Details ?

#

It is very confusing for our end users, as our end users are consumers and the business details are asking website, stripe page gives an alternate option as I highlighted in the screenshot, but we know which business category and we would like to pre-populate it for the stripe account users.

slim wave
#

you can prefill the business details such as the website by setting business_profile.url when generating the express account

#

and for type you'd set business_type
there's a great example for it under step 2

surreal panther
#

Thanks but not finding a business category option though, var options = new AccountCreateOptions
{
Type = "express",

            Country = user.CountryCode, //"US",

            Email = user.Email,

            BusinessType = "individual",

            BusinessProfile = new AccountBusinessProfileOptions()
            {
                Url = "",
                
                
            },


            Individual = new AccountIndividualOptions
            {
                FirstName = firstName,
                LastName = lastName,
                Email = user.Email,
                Phone = user.PhoneNumber,
                

            },
#

ie the code we are using, as you can see that we are choosing business type is individual , and u can see the phone number field , can you clarify where exactly we can see the phone number that we are setting up here ? Also where we can set the industry type ?

#

Looking for how to set the below programmatically,

#

I think product description is there under AccountProfileOptions but not the industry

#

also AccountInvidualOptions has Phone, not sure where it is going to show in the UI

slim wave