#ethan-tran_best-practices

1 messages ยท Page 1 of 1 (latest)

plush waveBOT
#

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

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

hazy oriole
#

Hi

visual grail
#

hi there ๐Ÿ‘‹ I just want to acknowledge the question I'm working on some other threads but will get to you as soon as I can!

hazy oriole
#

Is this screen available in the Stripe US to help the user choose their business type
This image was captured in Stripe AU

visual grail
#

That's Stripe's hosted onboarding page. This page should be available for US connected accounts as well.

#

Are you seeing something different?

hazy oriole
#

In US, I don't see this screen

#

It seems that in US there are only 2 types: individual, company not much as in AU

visual grail
#

Generally, Stripe accepts 4 business types for connected accounts (individual, company, nonprofit, govt) [0]. The configurations of company types depends on other things like what kind of connected account you're creating. Could you maybe use this page to show me the account configuration you're expecting: https://docs.stripe.com/connect/required-verification-information#US+AU+full+full+company+card_payments,transfers

[0] https://docs.stripe.com/api/accounts/create#create_account-business_type

hazy oriole
#

So what kind of setting that I need turn on to display this screen

visual grail
#

do you mean the Stripe-hosted onboarding page?

hazy oriole
#

yes, that's correct

visual grail
hazy oriole
#

It seems that you miss my point, what I mean is my Stripe onboarding US not show this screen

#

where I can change my business_type here

visual grail
#

can you share with me the link to the onboarding page for a US account that is not providing the option to change business type?

hazy oriole
#

sure, please wait me several mintues

#

sorry this screen is showed but now I got new error

#

In the createAccount params, Stripe requires us to fill in this business_type field, this error will be returned:
The business_type must be provided when sending either of individual or company parameters.

#

If I fill in the information, this page will be prefilled and not show at the beggining of process

visual grail
#

that would mean you are using parameters that requires you to set the business_type at account creation. Please share with me the parameters being used when you created the connected account for me to verify

hazy oriole
#

here is my setting

#

accountParams := &stripe.AccountParams{
Params: stripe.Params{},
Capabilities: &stripe.AccountCapabilitiesParams{
CardPayments: &stripe.AccountCapabilitiesCardPaymentsParams{
Requested: stripe.Bool(true),
},
Transfers: &stripe.AccountCapabilitiesTransfersParams{
Requested: stripe.Bool(true),
},
},
BusinessProfile: &stripe.AccountBusinessProfileParams{
MCC: StringStripe(enum.DefaultMCC),
SupportAddress: addressParams,
ProductDescription: stripe.String(enum.ProductDescription),
},
Country: stripe.String(country),
Email: stripe.String(user.Email),
Individual: &stripe.PersonParams{
Address: addressParams,
RegisteredAddress: addressParams,
Email: stripe.String(user.Email),
FirstName: stripe.String(user.FirstName),
LastName: stripe.String(user.LastName),
},
Type: stripe.String(stripeAccountType),
}

#

Is that possible if we prefill the company and individual information without providing business type?

visual grail
visual grail
#

my apologies, you do have to specify business_type if you are pre-filling information under individual or company