API Guide

{
"@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.
/api/AlertService/AlertSeverities(Id)
This URI represents a specific alert severity.
GET method for AlertSeverities(Id)
This method returns the details of a specific alert severity.
Description
Returns the details of a specific alert severity.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "$metadata#AlertService.AlertSeverity/$entity",
"@odata.id": "/api/AlertService/AlertSeverities(1)",
"Id": 1,
"Name": "Unknown",
"Description": "Unknown"
}
Alerts 91