Firstbase
  • Welcome
  • Incorporation API
    • Overview
    • Environment
    • Authentication
    • Name Check
      • Request
      • Response
        • Response for Successful
        • Response for Failed
    • Incorporation Order
      • Request
        • User
        • Company
        • Holders
        • Parent Companies
      • Response
        • Response for Successful
        • Response for Failed
          • Unavailable company
          • LLC - Wrong count percent
    • Fetch Order By External Id
      • Request
      • Response
        • Response for Successful
        • Response for Failed
          • Order not found
    • States of Incorporation
      • Request
      • Response
    • Countries
      • Request
      • Response
    • Industries
      • Request
      • Response
    • Webhook
      • Request
      • Response
      • Callback
        • Order call
        • Document call
    • Company Info
Powered by GitBook
On this page
  • Holders Example for LLC
  • Holders Example for Corporation

Was this helpful?

  1. Incorporation API
  2. Incorporation Order
  3. Request

Holders

The holders array.

This information represents the holders of the company to incorporate.

Parameters
Type
Required
Info

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": [{...}]
}
PreviousCompanyNextParent Companies

Last updated 2 years ago

Was this helpful?