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 nameData typeDescriptionNotes
address1StringSpecifies the first line of an address for the tenant contact
address2StringSpecifies the second line of an address for the tenant contact
cityStringSpecifies the city for the tenant contact
countryOrRegionStringSpecifies the country for the tenant contact
emailAddressStringSpecifies a valid email address for the tenant contact
extensionStringSpecifies a telephone number extension for the tenant contact
firstNameStringSpecifies the first name of the tenant contact
lastNameStringSpecifies the last name of the tenant contact
primaryPhoneStringSpecifies a telephone number for the tenant contactDo not include a telephone number extension. Use the extension property for that.
stateStringSpecifies the state or province for the tenant contact
zipOrPostalCodeStringSpecifies 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>