#hananafzal88-account-creation
1 messages Β· Page 1 of 1 (latest)
Hey! The industry is derived from business_profile.mcc: https://stripe.com/docs/api/accounts/create#create_account-business_profile-mcc
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and what about SSN
SSN is individual.id_number I guess: 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.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
what is mcc value for Software Industry?
Invalid string: Software...; must be at most 4 characters
gettings this exception
@inner hare Thanks
(Y)
@inner hare SSn is not id number
please tell me any other thing that i can check
for ssn
Hmm, should be. What's the error?
you were right i was giving wrong format but once i added ssn now this is saying that document is required and before ssn it was saying documents optiona
that usually means you didn't use our testing numbers
can you give me some testing no
it's 0000 for the last 4
if you enter something else then the account can't be verified so we ask for a document upload instead, as you see
make sure you use all the testing data from there(like using 1901-01-01 as the date of birth and something like address_full_match, San Francisco, 94103, CA as the address) so the account can be verified
yes u r right now only bank details are left can you help me in this regard
well my advice would be to use Express
but if you use Custom then now you have to build your own HTML webpage to collect bank account details and add them to the account via the API.
ExternalAccount = "btok_xxx"
where btok_xxx is the ID of a Token object you created on the frontend(https://stripe.com/docs/js/tokens_sources/create_token?type=bank_account) and have sent to your server.
or you do ExternalAccount = new AccountBankAccountOptions {....}
you never use AnyOf the way you tried to in that C#....
Thanks buddy its working
u guys are amazing
π
@warped roost @inner hare DONEπ
great! note that if you're using Custom Connect, you are far from done.
you need to handle the case of new information being required by listening to webhooks. You also need to build a user dashboard to help the user see their funds and any outstanding payouts, and build authentication for that dashboard, and so on.
yeah i know that