#ethan-tran_best-practices
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/1389459281304359073
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
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!
Is this screen available in the Stripe US to help the user choose their business type
This image was captured in Stripe AU
That's Stripe's hosted onboarding page. This page should be available for US connected accounts as well.
Are you seeing something different?
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
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
So what kind of setting that I need turn on to display this screen
do you mean the Stripe-hosted onboarding page?
yes, that's correct
the Stripe-hosted onboarding page is available if you create an Account Link. This is the guide to create an Account Link for a Standard connected account: https://docs.stripe.com/connect/standard-accounts#how-to-use-connect-onboarding-for-standard-accounts
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
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?
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
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
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?
It seems you are passing values in individual [0] which expects "individual" to also be declared for business_type
[0] https://docs.stripe.com/api/accounts/create#create_account-individual
my apologies, you do have to specify business_type if you are pre-filling information under individual or company