#BruceLee
1 messages · Page 1 of 1 (latest)
Is this for accounts with an individual business_type?
no, for marketplace style, so users will be creating their stripe account via api create
everything worked but just says missing ssn number when i checked stripe dashboard
What are you providing to business_type: https://stripe.com/docs/api/accounts/create#create_account-business_type in the api call was my question?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
If it's individual I think you can pass ssn here: https://stripe.com/docs/api/accounts/create#create_account-individual-id_number
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Otherwise if this is just the ssn of a company director or something else, then i don't think you can pass it on account creation
Ah if you use company instead of individual you can use the persons api: https://stripe.com/docs/connect/identity-verification-api#person-information
Which does let you populate ssn: https://stripe.com/docs/api/persons/create#create_person-id_number
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
but that only allows you to create last_4. The restriction on the connect account wants full ssn
is that intented? Does that mean that stripe partners can't custom their own onboarding fully from their own application?
I don't think it's last 4
Can you share the error you get when trying to provide the full ssn there?
With a request id?
You might be looking at this field which is last 4: https://stripe.com/docs/api/persons/create#create_person-ssn_last_4
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I shared a different field (id_number)