#johana_api
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1369433689821413547
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello
What type of connected account are you working with?
As far as I know, we might only return this info for certain types of accounts
Also, as far as I know - Date of Birth is stored on the Person object
Have you tried retreiving Persons for a connected account and looking there?
https://docs.stripe.com/api/persons/list
const account = await stripe.accounts.create({
type:'express',
capabilities: { card_payments: { requested: true },
transfers: {requested: true}},
country: codeCountry,email:userInfos.rows[0].email,business_type:"individual",
Express account
https://docs.stripe.com/api/accounts/object#account_object-individual
Information about the person represented by the account. This property is null unless business_type is set to individual. After you create an Account Link or Account Session, only a subset of this property is returned for accounts where controller.requirement_collection is stripe, which includes Standard and Express accounts.
ok, so isn't it possible to retrieve the date of birth of my connected account ? There is not possible ?
I don't believe so. You can collect it from the user prior to onboarding and prefill it if you want
Stripe won't return the info as far as I know because of compliance requirements
Sure
My platform is C2C, just for physical persons and not for companies. It's possible to create the connected account for physical persons, and when the user fills his information, stripe won't ask for company information?
When you set business_type to individual, we wouldn't ask for company information as far as I know
Of course
I set that business_type to individual but when the Stripe user account creation, they ask the type of company and no choice for physical persons
Hi hi! I’m going to be taking over for my colleague here.