Skip to main content

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

FieldTypeRequiredDescription
fieldTypeIdstringYesMust be set to "CompanyAddress" (from FieldTypeEnum)
countryIdstringNoCountry identifier for the registered address
citystringNoCity name for the registered address
zipcodestringNoPostal or ZIP code for the registered address
addressstringNoStreet address including building number and street name for the registered address
hasCorrespondenceAddressbooleanNoIndicates whether the company has a separate correspondence address
correspondenceCountryIdstringConditionalCountry identifier for the correspondence address (required if hasCorrespondenceAddress is true)
correspondenceCitystringConditionalCity name for the correspondence address (required if hasCorrespondenceAddress is true)
correspondenceZipcodestringConditionalPostal or ZIP code for the correspondence address (required if hasCorrespondenceAddress is true)
correspondenceAddressstringConditionalStreet 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 hasCorrespondenceAddress is set to true, all correspondence address fields must be provided.