Holders

The holders array.

This information represents the holders of the company to incorporate.

ParametersTypeRequiredInfo

firstName

string

required

The shareholder's first name.

middleName

string

optional

The shareholder's middle name.

lastName

string

required

The shareholder's last name.

email

string

required

The shareholder's e-mail.

phone

integer

required

Integers only, no symbols.

country

string

required

Use country iso alpha-2 code, Must be UPPERCASED.

percent

integer

required for LLC

Required if comanyType is llc. The total percentage of all shareholders should be 100%. corporation.

position

array

required for corporation

Required if comanyType is corporation. The corporation must have the following four (4) officials: president, secretary, chiefExecutiveOfficer, and chiefFinancialOfficer. and all four (4) must be distributed among the owner(s) or shareholder(s). Two (2) or more owner(s) or shareholder(s) cannot share the same position. Set to NULL if llc

isAdult

boolean

required

isShareholder

boolean

required

Default is false. Set to true if shareholder. Minimum of one shareholder must be set to true.

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

Holders Example for LLC

{
	"user": {...},
	"company": {...},
	"holders": [
		{
			"firstName": "Ivan",
			"middleName": "Holders"
			"lastName": "Petrov",
			"email": "IvanPetrov@email.com",
			"phone": 55987654321,
			"country": "MX",
			"percent": 34,			
			"isAdult": true,
			“isShareholder”: true,

		},
		{
			"firstName": "John",
			{...}
		},
		{
			"firstName": "Arnold",
			{...}
		}
	]
}

Holders Example for Corporation

{
	"user": {...},
	"company": {...},
	"holders": [
		{
			"firstName": "Ivan",
			"middleName": "Holders"
			"lastName": "Petrov",
			"email": "IvanPetrov@email.com",
			"phone": 55987654321,
			"country": "MX",			
			"position": [
				"chiefExecutiveOfficer",
				"chiefFinancialOfficer",
				"secretary",
				"director"
			],
			"isAdult": true,			
			"isShareHolder": true,
			"countOfShares": 90
		},
		{
			"firstName": "John",
			{...}
		},
		{
			"firstName": "Arnold",
			{...}
		}
	],
	"parentCompanies": [{...}]
}

Last updated