#Matthieu
1 messages · Page 1 of 1 (latest)
Hi there 👋 the Account Token you're using should already contain information about the business type, as well as the company or individual hash being used.
https://stripe.com/docs/api/tokens/create_account
Can you elaborate on what you meant when you said it was impossible to create an Account after removing business_type and individual but leaving the Account Token? Do you have the ID from the request that gave you that error that you can share?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello, thank you for your reply, im trying to put more datas into the account token
Like you want to include more information than is in the Account Token to the Account?
If so, I think you might need to do that in two requests, one to create the Account from the Account Token, then another to update the Account with the additional information.
Sorry, my english is bad, but i understand it is necessary to give lot of information into the account token, and then, put the token id fort the creation of custom connect account
Let me double check that. I don't think they're necessary, just one of the options available. While I look for that, are you planning to build your own form for collecting necessary details from your users, or you would be interested in using a prebuilt form for that?
We want to use custom accounts to not appear stripe logos
so we develop our own form
Gotcha, sorry, I thought we had a decent guide for that but I'm struggling to find it now.
If you're building your own flow, you will want to use Account and Person Tokens. You'll use them to collect the user's sensitive details from Stripe.js, and then reuse the Token IDs when creating the Connected Account and Person objects from your server side code.
I believe you'll want to avoid passing in data that could have been collected via an Account/Person token, when creating the Account object.
This is the best guide that I could find for it:
https://stripe.com/docs/connect/account-tokens