Modify Alerts Using POST
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.
Page number from which data needs to be displayed (0-based)
Expected number of entries per page
User Account identifier. Optional request parameter that is applicable when action is assignownership.
Identifiers of the Alerts
{
"uuids": [
"string"
]
}
Represents a list of UUID(s)
The Alerts on which the action has been performed
{
"alerts": [
{
"alertDefinitionId": "string",
"alertDefinitionName": "string",
"alertId": "string",
"alertImpact": "string",
"alertLevel": "string",
"cancelTimeUTC": 0,
"controlState": "string",
"extension": {
"anyObjects": [
{}
]
},
"links": [
{
"description": "string",
"href": "string",
"name": "string",
"rel": "string"
}
],
"ownerId": "string",
"ownerName": "string",
"resourceId": "string",
"startTimeUTC": 0,
"statKey": "string",
"status": "string",
"subType": "string",
"suspendUntilTimeUTC": 0,
"type": "string",
"updateTimeUTC": 0
}
],
"links": [
{
"description": "string",
"href": "string",
"name": "string",
"rel": "string"
}
],
"pageInfo": {
"page": 0,
"pageSize": 0,
"sortBy": "string",
"sortOrder": "string",
"totalCount": 0
}
}
Error occurred while performing the specified action