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
  • Parent Companies Example for LLC
  • Parent Companies Example for Corporation

Was this helpful?

  1. Incorporation API
  2. Incorporation Order
  3. Request

Parent Companies

The Parent Companies array.

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

Parameters
Type
Required
Info

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
               }
           ]
}

PreviousHoldersNextResponse

Last updated 2 years ago

Was this helpful?