#Gophys-connect
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
when creating the account are you passing the business_type : individual param ?https://stripe.com/docs/api/accounts/create#create_account-business_type
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
yes this is the information that I use:
this.accountResult = await stripe.createToken('account', { tos_shown_and_accepted: true, business_type: 'individual', individual: { first_name: infos.prenom, last_name: infos.nom, address: { line1: infos.adresse, city: infos.villeStr, state: infos.pays, postal_code: infos.codePostal, }, }, });
do you a request id or an account id I could take a look at please?
sure, I am in development mode, I will create a fresh account id
thanks ๐
acct_1LIUBpRcXLOYaE9O
I just created this account with the code you see
unfortunately those are mandatory fields even if the owner of the Connect Account is an individual
especially the business activity
since this will determine whether some payment methods would be accepted, or if Stripe allows certain transactions etc
is it possible to pre fill thoses fields for an individual account ? my customers might not understand them and won't know what to do
this is part of the KYC
yes sure
when you create the account token, the same way that you are pre-filling all the other information
you can add the business_profile's mcc and url
thank you very much for your help
I have another question, after I filled those informations, when I recreate a link for connect onboarding, I get to fill with the kyc documents like identity and proof of address, is there a way to ask thoses information back to back in the same connect onboading form ?
I don't really follow your question
I have to go for now, I will elaborate a little bit later.
Thanks you very much for your help, very helpful