GET /protocols/bacnet/local/event-notifications/{uuid}/
This resource print one specific event notification.
The response is only available in Application/Xml
If this parameter is not in the request, the Application/Json will be chosen by default.
There are multiple possible values (according the resource):
The first two are the most often used.
This is the id of the event notification.
Object Name: EventNotification
Property Name | Type | Description | Method |
---|---|---|---|
Uuid | String | This is the unique id of the event notification. | GET |
EventInfo | Object | GET |
Object Name: EventInfo
propertyName | type | description | method |
---|---|---|---|
ProcessIdentifier | Integer | GET | |
InitiatingDeviceIdentifier | String | GET | |
EventObjectIdentifier | String | GET | |
TimeStamp | String | GET | |
NotificationClass | Integer | GET | |
Priority | Integer | GET | |
MessageText | String | GET | |
NotifyType | String | GET | |
AckRequired | Boolean | GET | |
FromState | String | GET | |
ToState | String | GET | |
EventValues | Array <EventType> |
GET | |
EventType | Object | GET |
Object Name: EventType
propertyName | type | description | method |
---|---|---|---|
Value | String | GET | |
NewState | String | GET | |
StatusFlags | String | GET | |
ExceedingValue | Float | GET | |
ExceedingLimit | Float | GET | |
DeadBand | Float | GET |
URL Example: https://0.0.0.0/api/rest/v1/protocols/bacnet/local/event-notifications/c85dcae1-cbc1-4055-8db9-174c7dea4d8f
<?xml version="1.0" encoding="utf-8"?>
<EventNotification>
<Uuid>c85dcae1-cbc1-4055-8db9-174c7dea4d8f</Uuid>
<EventInfo>
<ProcessIdentifier>0</ProcessIdentifier>
<InitiatingDeviceIdentifier>Device,8051</InitiatingDeviceIdentifier>
<EventObjectIdentifier>AnalogValue,51</EventObjectIdentifier>
<TimeStamp>2016-02-08T13:07:35.55-04:00</TimeStamp>
<NotificationClass>1</NotificationClass>
<Priority>255</Priority>
<EventType>OutOfRange</EventType>
<MessageText>ECY-VAV-Guillaume\TempErr\Non-Critical\High Limit</MessageText>
<NotifyType>Alarm</NotifyType>
<AckRequired>true</AckRequired>
<FromState>Normal</FromState>
<ToState>HighLimit</ToState>
<EventValues>
<EventType>
<Value>OutOfRange</Value>
<ExceedingValue>864.5</ExceedingValue>
<ExceedingLimit>2.2222</ExceedingLimit>
<DeadBand>2.0</DeadBand>
<StatusFlags>[inAlarm,,,]</StatusFlags>
</EventType>
</EventValues>
</EventInfo>
</EventNotification>