POST api/AlertsTasks/DismissAlerts/{Environment}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Environment | string |
Required |
Body Parameters
Collection of AcknowledgeAlerts| Name | Description | Type | Additional information |
|---|---|---|---|
| NotificationID | integer |
None. |
|
| Source | string |
None. |
|
| Acknowledge | boolean |
None. |
|
| Critical | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"NotificationID": 1,
"Source": "sample string 2",
"Acknowledge": true,
"Critical": "sample string 4"
},
{
"NotificationID": 1,
"Source": "sample string 2",
"Acknowledge": true,
"Critical": "sample string 4"
}
]
Response Information
Resource Description
PostServiceResponseOfListOfAcknowledgeAlerts| Name | Description | Type | Additional information |
|---|---|---|---|
| Count | string |
None. |
|
| Data | Collection of AcknowledgeAlerts |
None. |
Response Formats
application/json, text/json
Sample:
{
"Count": "sample string 1",
"Data": [
{
"NotificationID": 1,
"Source": "sample string 2",
"Acknowledge": true,
"Critical": "sample string 4"
},
{
"NotificationID": 1,
"Source": "sample string 2",
"Acknowledge": true,
"Critical": "sample string 4"
}
]
}