CompanyDetailsDto
Company registration and filing details (Companies House)
Properties
| Name | Type | Description |
|---|---|---|
| number | string | UK Companies House registration number |
UK Companies House registration number | ||
| status | enum | Active Dissolved Dormant ProposalToStrikeOff Liquidation VoluntaryArrangement Administration ConvertedClosed Receivership InsolvencyProceedings Open Closed |
Active Dissolved Dormant ProposalToStrikeOff Liquidation VoluntaryArrangement Administration ConvertedClosed Receivership InsolvencyProceedings Open Closed | ||
| incorporationDate | string | Date the company was incorporated/registered with Companies House |
Date the company was incorporated/registered with Companies House | ||
| registeredAddress | string | Official registered office address as filed with Companies House |
Official registered office address as filed with Companies House | ||
| sicCodes | array of CodeAndNameDto | Standard Industrial Classification codes describing the company's business activities |
Standard Industrial Classification codes describing the company's business activities | ||
| authenticationCode | string | Authentication code required for filing with Companies House |
Authentication code required for filing with Companies House | ||
JSON Example
{
"number": "string",
"status": "Active",
"incorporationDate": "2024-01-01T00:00:00Z",
"registeredAddress": "string",
"sicCodes": [
{
"code": "...",
"name": "..."
}
]
}