#holykent

1 messages · Page 1 of 1 (latest)

lean gardenBOT
velvet mason
#

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

https://support.stripe.com/?contact=true

half solar
#

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
            };
        }
velvet mason
#

It depends on your business model. This isn't something our team on discord can advice really.