Modify Alerts
Modify multiple Alerts by looking them up using their identifiers and performing one of the following actions - Suspend, Cancel,Take Ownership, Release Ownership
Examples: POST /api/alerts?action=suspend&minutes=1
POST /api/alerts?action=cancel
POST /api/alerts?action=takeownership
POST /api/alerts?action=releaseownership
POST /api/alerts?action=assignownership
The action to take
The number of minutes to suspend an alert. Required when action is Suspend, otherwise ignored.
User Account identifier. Optional request parameter that is applicable when action is assignownership.
Page number from which data needs to be displayed (0-based)
Expected number of entries per page
Identifiers of the Alerts
Show optional properties
{
"uuids": [
{}
]
}
"{\n \"uuids\" : [ \"31eeaeec-82d5-4037-a59b-efed2e7c8e3a\", \"18589dea-9999-1234-abba-f1ee73004dac\" ]\n}"
Represents a list of UUID(s)
The Alerts on which the action has been performed
"{\n \"alerts\" : [ {\n \"alertId\" : \"31eeaeec-82d5-4037-a59b-efed2e7c8e3a\",\n \"resourceId\" : \"7f727cbc-62f9-4083-ab01-5c3fcdec1370\",\n \"alertLevel\" : \"NONE\",\n \"startTimeUTC\" : 1744473855,\n \"cancelTimeUTC\" : 0,\n \"updateTimeUTC\" : 1744483855,\n \"suspendUntilTimeUTC\" : 0\n }, {\n \"alertId\" : \"18589dea-9999-1234-abba-f1ee73004dac\",\n \"resourceId\" : \"d2b8388f-64a2-4401-aa0c-c2fdea08ab4f\",\n \"alertLevel\" : \"NONE\",\n \"startTimeUTC\" : 1744473855,\n \"cancelTimeUTC\" : 0,\n \"updateTimeUTC\" : 1744483855,\n \"suspendUntilTimeUTC\" : 0\n } ]\n}"
Represents page information for a paged result
Collection of links
List of alerts
Error occurred while performing the specified action
curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"uuids":["string"]}' https://{api_host}/suite-api/api/alerts