API Guide

Table Of Contents
/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"
}
Table 53. Attributes
Attribute name Description
Id ID of the severity.
Name Name of the severity
Description Description of the severity.
/api/AlertService/AlertStatuses
This URI represents the statuses for an alert.
GET method for AlertStatuses
This method returns all possible statues that are applicable to an alert.
Description
Returns all the possible alert statues.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "$metadata#Collection(AlertService.AlertStatus)",
"@odata.count": 2,
"value": [
{
"@odata.id": "/api/AlertService/AlertStatuses(1000)",
"Id": 1000,
"Name": "Acknowledged",
"Description": "The event was acknowledged"
},
{
"@odata.id": "/api/AlertService/AlertStatuses(2000)",
"Id": 2000,
"Name": "Not-Acknowledged",
120 Alerts