Alarms

The /alarms URL provides the ability to retrieve the device active and history alarms.

URL

/api/v1/alarms

HTTP Method

GET

HTTP Response

200 OK

Example

Request:
GET /api/v1/alarms HTTP/1.1
Host: 10.4.219.229 
Response:
HTTP/1.1 200 OK
Content-Type: application/json
{
    "alarms": [
        {
            "id": "active",
            "description": "Active alarms",
            "url": "/api/v1/alarms/active"
        },
        {
            "id": "history",
            "description": "History alarms",
            "url": "/api/v1/alarms/history"
        }
    ]
}