Skip to main content
POST
/
api
/
event
/
getUnhealthyDeviceAlerts
Get list of unhealthy devices in organization
curl --request POST \
  --url https://api2.rhombussystems.com/api/event/getUnhealthyDeviceAlerts \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '{}'
{
  "error": true,
  "errorMsg": "<string>",
  "unhealthyDeviceAlerts": [
    {
      "deviceUuid": "<string>",
      "orgUuid": "<string>",
      "symptom": "POLICY_NOT_ASSIGNED",
      "timestamp": 123,
      "uuid": "<string>"
    }
  ],
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for retrieving unhealthy device alerts.

Response

200 - application/json

OK

Response object containing unhealthy device alerts.

error
boolean | null
errorMsg
string | null
unhealthyDeviceAlerts
object[] | null

List of unhealthy device alerts

warningMsg
string | null