#holykent
1 messages · Page 1 of 1 (latest)
Hello 👋
AFAIK Individual name has to be a person name and not the business name.
I'd recommend talking to our support team to see if there are workarounds
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Ok, but if im a private host (airbnb type host)... do I use individual? or do i still use company?
currently I have this for accountcreateoptions
if (hostDetails.HostType is HostType.Private)
{
options.Individual = new AccountIndividualOptions
{
FirstName = hostDetails.FirstName,
LastName = hostDetails.LastName,
Phone = hostDetails.PhoneNumber,
Address = address,
};
}
else if (hostDetails.HostType is HostType.Professional)
{
options.Company = new AccountCompanyOptions
{
Name = hostDetails.CompanyName,
Phone = hostDetails.PhoneNumber,
Address = address
};
}
It depends on your business model. This isn't something our team on discord can advice really.