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
  • The comma-separated list of device IDs.
    Example:
    109,7
  • The number of records to limit results by. If you do not also set the start parameter, records start at 0.
    Example:
    100
  • The page of results to start from. This parameter is ignored if you do not also set the limit parameter.
    Default Value: 0
    Example:
    1

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
The 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
An error.
Back to Top