GET residentapi/units/{unitId}/emergencycontact
Get all of the emergency contacts for a unit
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| unitId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListWrapperOfEmergencyContact| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| Elements | Collection of EmergencyContact |
None. |
Response Formats
application/json, text/json
Sample:
{
"total": 1,
"elements": [
{
"emergencyContactId": 1,
"propertyId": 2,
"unitId": 3,
"firstName": "sample string 4",
"lastName": "sample string 5",
"emailAddress": "sample string 6",
"cellPhone": "sample string 7",
"relationship": "sample string 8"
},
{
"emergencyContactId": 1,
"propertyId": 2,
"unitId": 3,
"firstName": "sample string 4",
"lastName": "sample string 5",
"emailAddress": "sample string 6",
"cellPhone": "sample string 7",
"relationship": "sample string 8"
}
]
}