Get Device Event Details

get

/api/deviceNavigation/Devices/readStatesEvent

Get event details about the devices specified in DeviceID, including the number of events by severity.

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : data
Type: array
Show Source
Example:
[
    {
        "DeviceID":"109",
        "EventExists":true,
        "EventSeverity":"normal",
        "Count":0,
        "SumCount":0,
        "SeverityValues":[
            0,
            0,
            0,
            0,
            0,
            0
        ],
        "LoadingStates":false
    },
    {
        "DeviceID":"7",
        "EventExists":true,
        "EventSeverity":"major",
        "Count":32,
        "SumCount":8627,
        "SeverityValues":[
            1,
            0,
            0,
            28,
            3,
            0
        ],
        "LoadingStates":false
    }
]
Nested Schema : deviceNavigationDevicesReadStatesEvent
Type: object
Show Source
Nested Schema : SeverityValues
Type: array
An array of event counts for each severity value in following order:- Normal, Unknown, Info, Minor, Major, Critical
Show Source
Example:
[
    0,
    0,
    0,
    0,
    0,
    0
]

Default Response

Failed operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : errors
Type: array
The list of errors reported. Validation errors will be keyed by record field.
Show Source
Nested Schema : items
Type: object
Back to Top