Skip to main content

Modify an Alert

Select

SaaS
Customer Managed

This operation updates an alert.

More Details

Path Parameters
  • alertId2 string required
Request Body required
  • alertDetail object required
  • alertDetail object required
  • regNonGalaxyUserList object required
  • nonGalaxyUserList string[] required
  • nonGalaxyUserOperationType int32 required
Responses

OK


Schema
  • errorMessage string
  • errorCode integer
POST /alertrule/:alertid2/action/modify    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
alertId2 — path required
Body required

{
"alertDetail": {
"alertDetail": {
"regNonGalaxyUserList": {
"nonGalaxyUserList": [
"AddedUser@testing.com"
],
"nonGalaxyUserOperationType": 2
}
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/AlertRule/:alertId2/Action/Modify' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"alertDetail": {
"alertDetail": {
"regNonGalaxyUserList": {
"nonGalaxyUserList": [
"AddedUser@testing.com"
],
"nonGalaxyUserOperationType": 2
}
}
}
}'