Get Device Threshold Details

get

/api/deviceNavigation/Devices/readStatesThresholds

Get threshold details about the devices specified in DeviceID, including the number of thresholds and breached thresholds.

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",
        "ThresholdExists":0,
        "ThresholdSeverity":"normal",
        "ThresholdData":[
            [
                "Metric Thresholds",
                "Normal",
                2
            ],
            [
                "Count",
                0,
                2
            ],
            [
                "Critical",
                0
            ],
            [
                "Warning",
                0
            ],
            [
                "Normal",
                0,
                2
            ]
        ],
        "LoadingStates":false
    },
    {
        "DeviceID":"7",
        "ThresholdExists":7,
        "ThresholdSeverity":"critical",
        "ThresholdData":[
            [
                "Metric Thresholds",
                "Critical",
                2
            ],
            [
                "Count",
                7,
                2
            ],
            [
                "Critical",
                4
            ],
            [
                "Warning",
                2
            ],
            [
                "Normal",
                1,
                2
            ]
        ],
        "LoadingStates":false
    }
]
Nested Schema : deviceNavigationDevicesReadStatesThresholds
Type: object
Show Source
Nested Schema : ThresholdData
Type: array
Summary accounting information of violated thresholds status.
Show Source
Example:
[
    "Metric Thresholds",
    "Normal",
    2
]

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