GET residentapi/units/{unitId}/alternateaddresses
Get alternate addresses for a unit
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| unitId |
unitId of UnitAltAddresses |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListWrapperOfUnitAlternateAddress| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| Elements | Collection of UnitAlternateAddress |
None. |
Response Formats
application/json, text/json
Sample:
{
"total": 1,
"elements": [
{
"addressId": 1,
"propertyId": 2,
"unitId": 1,
"address1": "sample string 3",
"address2": "sample string 4",
"city": "sample string 5",
"state": "sample string 6",
"zip": "sample string 7",
"countryCode": "sample string 8",
"isBillingAddress": true,
"isAvsVerified": true,
"isCareOf": true,
"isMilitary": true
},
{
"addressId": 1,
"propertyId": 2,
"unitId": 1,
"address1": "sample string 3",
"address2": "sample string 4",
"city": "sample string 5",
"state": "sample string 6",
"zip": "sample string 7",
"countryCode": "sample string 8",
"isBillingAddress": true,
"isAvsVerified": true,
"isCareOf": true,
"isMilitary": true
}
]
}