Company

The company object.

This information represents the company to be incorporated.

Company Example for LLC:

{
	"user": {...},
	"company": {
		"companyType": "llc",
		"registrationState": "delaware",
		"businessName": "Awesome company",
		"businessNameEnding": "LLC",
		"industry": "Software Engineering",
	},
	"holders": [{...},{...}]
}

Company Example for Corporation:

{
	"user": {...},
	"company": {
		"companyType": "corporation",
		"registrationState": "delaware",
		"businessName": "AI Intermediate Holdings",
		"businessNameEnding": "Corp",
		"industry": "Financial Services",
		"countOfShares": 100,
		"minSharePrice": 0.01,
	},
	"holders": [{...},{...}],
	"parentCompanies": [{...}]
}

Last updated