API Guide

Table Of Contents
/api/AlertService/AlertSeverities
This URI represents the alert severities.
GET method for AlertSeverities
This method returns all the severities applicable to an alert.
Description Returns all the severities applicable to an alert.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "$metadata#Collection(AlertService.AlertSeverity)",
"@odata.count": 5,
"value": [
{
"@odata.id": "/api/AlertService/AlertSeverities(1)",
"Id": 1,
"Name": "Unknown",
"Description": "Unknown"
},
{
"@odata.id": "/api/AlertService/AlertSeverities(2)",
"Id": 2,
"Name": "Info",
"Description": "Info"
},
{
"@odata.id": "/api/AlertService/AlertSeverities(4)",
"Id": 4,
"Name": "Normal",
"Description": "Normal"
},
{
"@odata.id": "/api/AlertService/AlertSeverities(8)",
"Id": 8,
"Name": "Warning",
"Description": "Warning"
},
{
"@odata.id": "/api/AlertService/AlertSeverities(16)",
"Id": 16,
"Name": "Critical",
"Description": "Critical"
}
]
}
Table 52. Attributes
Attribute name Description
Id ID of the severity.
Name Name of the severity.
Description Description of the severity.
Alerts 119