Alerting & Response/Alert Events
POSTAlertingSince 1.0SynchronousAuth Required
ResolveAlertEvent
Manually resolve an alert event marking it as handled
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 resolve
Body Fields
resolvedByStringRequiredUser resolving the alert
Example: admin
commentStringRequiredOptional resolution comment
Example: Resolved by scaling up the instance
Responses
Endpoint
POST/api/v1/alerting/events/{eventId}/resolve
/api/v1/alerting/events/{eventId}/resolve
Request Example
curl -X POST '{host}/api/v1/alerting/events/{eventId}/resolve' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"resolvedBy":"admin","comment":"Resolved by scaling up the instance"}'
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.
