Alerting & Response/Alert Events
POSTAlertingSince 1.0SynchronousAuth Required
AcknowledgeAlertEvent
Acknowledge an alert event to indicate it is being investigated
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Path Parameters
Request Inputs
Path Parameters
eventIdStringRequiredEvent identifier to acknowledge
Body Fields
acknowledgedByStringRequiredUser acknowledging the alert
Example: admin
commentStringRequiredOptional comment with the acknowledgement
Example: Investigating the issue
Responses
Endpoint
POST/api/v1/alerting/events/{eventId}/acknowledge
/api/v1/alerting/events/{eventId}/acknowledge
Request Example
curl -X POST '{host}/api/v1/alerting/events/{eventId}/acknowledge' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"acknowledgedBy":"admin","comment":"Investigating the issue"}'
Response Example
200{
"uuid": "event-001",
"ruleUuid": "rule-abc123",
"ruleName": "High CPU Usage",
"resourceType": "vm",
"resourceUuid": "res-abc123",
"metricName": "cpu_usage_percent",
"currentValue": 95.3,
"threshold": 90.0
}Change History
This API has no change history records yet.
