POST residentapi/emergencycontact

Create an emergency contact record

Request Information

URI Parameters

None.

Body Parameters

EmergencyContactCreate
NameDescriptionTypeAdditional information
PropertyId

Connect Property Id.

integer

Required

UnitId

Connect Unit Id.

integer

Required

FirstName

First Name.

string

Required

LastName

Last Name.

string

Required

EmailAddress

Email Address. One of email address or cell phone is required.

string

None.

CellPhone

Cell Phone. One of email address or cell phone is required.

string

None.

Relationship

Relationship.

string

Required

Request Formats

application/json, text/json

Sample:
{
  "propertyId": 1,
  "unitId": 2,
  "firstName": "sample string 3",
  "lastName": "sample string 4",
  "emailAddress": "sample string 5",
  "cellPhone": "sample string 6",
  "relationship": "sample string 7"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EmergencyContact
NameDescriptionTypeAdditional information
EmergencyContactId

Emergency Contact Id. Primary Key

integer

None.

PropertyId

Connect Property Id.

integer

None.

UnitId

Connect Unit Id.

integer

None.

FirstName

First Name.

string

None.

LastName

Last Name.

string

None.

EmailAddress

Email Address.

string

None.

CellPhone

Cell Phone.

string

None.

Relationship

Relationship.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "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"
}