#Adam-Connect-verification
1 messages ยท Page 1 of 1 (latest)
Hi there, if they are an individual then they can use SSN
https://stripe.com/docs/connect/required-verification-information is what you want to refer to
What if they are a french citizen haha
Take a look at the above
Thank you!
I see, and this can be changed in the code im sure
In the code of our application i mean
Yep
Just got to flip false to true in that request
Woops
Wrong thread
๐
Ignore the above

Yes you can dictate how the Connected Accounts are created
But it will depend on what you need
Does this only apply to Custom accounts? I am using Express right now,
No the same will hold true for Express. We don't list Express there since we take care of verification requirements for Express instead of the platform.
But the same overall requirements apply.
Do you think the code for this will be in create-account-hosted or accountLinks?
Are you asking how you would pre-fill certain information?
I also notice that I am using create-account-hosted however Im not sure if this is old
I'm not clear exactly on what you are trying to do at this point.
That is just an endpoint that you designate on your server
But you are calling stripe.accounts.create which is still the recommended way to create accounts
Im wondering how to allow a French seller to change his required fields to French, because right now it is asking him for an EIN, or SSN
Then it sounds like they are being onboarded with a US account. You need to specify FR here: https://stripe.com/docs/api/accounts/create#create_account-country
Otherwise we use the default, which I assume for you is US.
Yes thank you for this link
So below business_type in your screenshot you would add country: 'FR'
Could i have country: 'US', 'FR'?
Maybe I could do country: variableOfUsersCountry
Yep
So i think on our end we would need to grab their country,
Okay sounds like a great solution!
Thanks for the help and cheers!!