Company Address
The Company Address Answer is used to submit address information for a company or legal entity, including both registered address and optional correspondence address.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
fieldTypeId | string | Yes | Must be set to "CompanyAddress" (from FieldTypeEnum) |
countryId | string | No | Country identifier for the registered address |
city | string | No | City name for the registered address |
zipcode | string | No | Postal or ZIP code for the registered address |
address | string | No | Street address including building number and street name for the registered address |
hasCorrespondenceAddress | boolean | No | Indicates whether the company has a separate correspondence address |
correspondenceCountryId | string | Conditional | Country identifier for the correspondence address (required if hasCorrespondenceAddress is true) |
correspondenceCity | string | Conditional | City name for the correspondence address (required if hasCorrespondenceAddress is true) |
correspondenceZipcode | string | Conditional | Postal or ZIP code for the correspondence address (required if hasCorrespondenceAddress is true) |
correspondenceAddress | string | Conditional | Street address for the correspondence address (required if hasCorrespondenceAddress is true) |
Example Usage
{
"fqName": "CompanyInfo_Address_CompanyAddress",
"answer": {
"fieldTypeId": "CompanyAddress",
"countryId": "AE",
"city": "Dubai",
"zipcode": "12345",
"address": "123 Sheikh Zayed Road, Downtown Dubai",
"hasCorrespondenceAddress": true,
"correspondenceCountryId": "GB",
"correspondenceCity": "London",
"correspondenceZipcode": "EC1A 1BB",
"correspondenceAddress": "456 Oxford Street, Westminster"
}
}
Notes
- The company address includes both the registered address (legal headquarters) and an optional correspondence address (for communications).
- If
hasCorrespondenceAddressis set to true, all correspondence address fields must be provided.