Alerting & Response/Alert Events
POSTAlertingSince 1.0SynchronousAuth Required
AddAlertEventComment
Add a comment to an alert event for collaboration and audit trail
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 add comment to
Body Fields
authorStringRequiredComment author
Example: admin
contentStringRequiredComment content text
Example: Checking logs for root cause
Responses
Endpoint
POST/api/v1/alerting/events/{eventId}/comments
/api/v1/alerting/events/{eventId}/comments
Request Example
curl -X POST '{host}/api/v1/alerting/events/{eventId}/comments' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"author":"admin","content":"Checking logs for root cause"}'
Response Example
200{
"uuid": "comment-001",
"alertUuid": "event-001",
"author": "admin",
"content": "Investigating high CPU on db-01",
"createDate": "example"
}Change History
This API has no change history records yet.
