contactInfo
The contactInfo
data type describes the contactInfo
resource for tenants.
Properties
The table below describes the properties included in the contactInfo
data type. All of these properties are optional. The property values can contain any valid UTF-8 characters, including white space.
Property name | Data type | Description | Notes |
address1 | String | Specifies the first line of an address for the tenant contact | |
address2 | String | Specifies the second line of an address for the tenant contact | |
city | String | Specifies the city for the tenant contact | |
countryOrRegion | String | Specifies the country for the tenant contact | |
emailAddress | String | Specifies a valid email address for the tenant contact | |
extension | String | Specifies a telephone number extension for the tenant contact | |
firstName | String | Specifies the first name of the tenant contact | |
lastName | String | Specifies the last name of the tenant contact | |
primaryPhone | String | Specifies a telephone number for the tenant contact | Do not include a telephone number extension. Use the extension property for that. |
state | String | Specifies the state or province for the tenant contact | |
zipOrPostalCode | String | Specifies the postal code for the tenant contact |
Example
Here’s an XML example of the contactInfo
data type:
<contactinfo> <address1>Exmple Co., Finance Dept.</address1> <address2>10 Main St.</address2> <city>Anytown</city> <countryOrRegion>USA</countryOrRegion> <emailAddress>lgreen@example.com</emailAddress> <extension>123</extension> <firstName>Lee</firstName> <lastName>Green</lastName> <zipOrPostalCode>12345</zipOrPostalCode> <primaryPhone>555-555-5555</primaryPhone> <state>MA</state> </contactinfo>