#cyp_api

1 messages ¡ Page 1 of 1 (latest)

novel elbowBOT
#

👋 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/1369563854274691165

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

winged snow
#

Hi! Can I confirm if you mean that your connected account was required to fill up the business type but there wasn't a choice for individual?

forest delta
#

Hi,

Yes that's it.

I automatically configure for individual in my code :

connected_account = Stripe::Account.create({
country: 'FR',
type: 'express',
email: current_user.email,
capabilities: {
card_payments: { requested: true },
transfers: { requested: true },
},
business_type: 'individual',
business_profile: {
"url": "https://www.locavelow.fr/user_profile/#{current_user.slug}",
"mcc": "7394",
},
individual: {
"first_name": "#{current_user.first_name}",
"last_name": "#{current_user.last_name}",
}
})

Thanks

winged snow
#

What is your onboarding method? Hosted onboarding?

forest delta
#

What do you mean by hosted ? Hosted by Stripe?

winged snow
#

Yes, because you mentioned they don't have an option to choose individual. Where are they trying to fill up this information?

forest delta
#

Initially, nobody tells me that they need to fill this section.

But 3 people in a row did it now, so I guess that was not the case before

#

They have to fill it up in the business type section during onboarding process

winged snow
#

I understand but where are they being asked to fill up the information? Is it on Stripe's hosted onboarding page?