GET residentapi/units/carecenterunits?email={email}&mobile={mobile}

Returns all units linked to a particular email address or phone number.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
email

One of email or mobile is required.

string

mobile

One of email or mobile is required.

string

Body Parameters

None.

Response Information

Resource Description

ListWrapperOfCareCenterUnit
NameDescriptionTypeAdditional information
Total

integer

None.

Elements

Collection of CareCenterUnit

None.

Response Formats

application/json, text/json

Sample:
{
  "total": 1,
  "elements": [
    {
      "connectUnitId": 1,
      "connectPropertyId": 2,
      "connectResidentId": 3,
      "residentType": "sample string 4",
      "residentFirstName": "sample string 5",
      "residentLastName": "sample string 6",
      "c4UID": "sample string 7",
      "propertyName": "sample string 8",
      "emailAddress": "sample string 9",
      "phoneNumber": "sample string 10",
      "unitNumber": "sample string 11",
      "address1": "sample string 12",
      "address2": "sample string 13",
      "city": "sample string 14",
      "state": "sample string 15",
      "zipCode": "sample string 16",
      "country": "sample string 17"
    },
    {
      "connectUnitId": 1,
      "connectPropertyId": 2,
      "connectResidentId": 3,
      "residentType": "sample string 4",
      "residentFirstName": "sample string 5",
      "residentLastName": "sample string 6",
      "c4UID": "sample string 7",
      "propertyName": "sample string 8",
      "emailAddress": "sample string 9",
      "phoneNumber": "sample string 10",
      "unitNumber": "sample string 11",
      "address1": "sample string 12",
      "address2": "sample string 13",
      "city": "sample string 14",
      "state": "sample string 15",
      "zipCode": "sample string 16",
      "country": "sample string 17"
    }
  ]
}