NOTE: This is an article for the legacy API. To access updated information on this endpoint, please reference the HTML guide attached to the bottom of the REST API Access document
Description: Returns a summary list of alerts and the count of high/medium/low priority of each.
Resource: AlertCounts/
Verb: GET
Returns: JSON Array of AlertCount objects
Example Response JSON:
[{
"AlertTypeName": "CurrentExcess",
"AlertType": 16384,
"NumLowPriority": 36,
"NumMedPriority": 97,
"NumHighPriority": 6359
}, {
"AlertTypeName": "ProjectedAvailable",
"AlertType": 65536,
"NumLowPriority": 2327,
"NumMedPriority": 247,
"NumHighPriority": 709
}, {
"AlertTypeName": "PastForecastVsActuals",
"AlertType": 2048,
"NumLowPriority": 2340,
"NumMedPriority": 1384,
"NumHighPriority": 689
}
......
]