Parent Companies

The Parent Companies array.

This information represents the parent companies of the company to incorporate.

ParametersTypeRequiredInfo

name

string

required

The shareholders last name.

percent

float

required for LLC

countOfShares

integer

required for corporation

Required if comanyType is corporation. The sum of the count of shares in all holders should be the sames a count of shares in company. Set to NULL if llc

Parent Companies Example for LLC

{
	"user": {...},
	"company": {...},
	"holders": [{...}, {...}],
	"parentCompanies": [
               {
                   "name": "Parent Company",                  
                   "percent": 33
               }
           ]
}

Parent Companies Example for Corporation

{
	"user": {...},
	"company": {...},
	"holders": [{...}, {...}],
	"parentCompanies": [
               {
                   "name": "Parent Company",
                   "countOfShares": 10
               }
           ]
}

Last updated