GET api/property/{id}/alarms

Get a list of alarms for a property Processes this property API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Id of the property

integer

Required

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

Collection of PropertyAlarmDataContract
NameDescriptionTypeAdditional information
Name

The name value.

string

None.

Code

The code value.

string

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Code": "sample string 2",
    "Id": 3
  },
  {
    "Name": "sample string 1",
    "Code": "sample string 2",
    "Id": 3
  }
]