User Address
The User Address Answer is used to submit residential address information for individual users.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
fieldTypeId | string | Yes | Must be set to "UserAddress" (from FieldTypeEnum) |
countryId | string | Yes | Country identifier code (usually ISO country code) |
city | string | Yes | City name |
state | string | Yes | State, province, or region |
zipcode | string | Yes | Postal or ZIP code |
address | string | Yes | Street address including building number and street name |
Example Usage
{
"fqName": "PersonalInfo_Address_ResidentialAddress",
"answer": {
"fieldTypeId": "UserAddress",
"countryId": "AE",
"city": "Dubai",
"state": "Dubai",
"zipcode": "12345",
"address": "123 Sheikh Zayed Road, Downtown Dubai"
}
}
Notes
- All fields are required to provide a complete address.
- The
countryIdshould be a valid country code recognized by the system (typically ISO 3166-1 alpha-2 codes). - The format and validation of address components may vary depending on the selected country.
- This model is used for individual user addresses, not company addresses (which would use the Company Address Answer).