Skip to main content
Alerting & Response/Alert Events
GETAlertingSince 1.0SynchronousAuth Required

ListAlertEventComments

List all comments on a specific alert event

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • eventIdStringRequired

    Event identifier to list comments for

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of comments

    Example: (nested array)

    • uuidString

      Unique identifier of the comment

      Example: comment-001

    • alertUuidString

      Alert event UUID this comment belongs to

      Example: event-001

    • authorString

      Author of the comment

      Example: admin

    • contentString

      Comment content text

      Example: Investigating high CPU on db-01

    • createDateString

      Timestamp when the comment was created

      Example: 2026-01-15T08:00:00Z

  • totalInteger

    Total number of comments

    Example: 3

  • limitInteger

    Maximum items per page

    Example: 20

  • offsetInteger

    Offset from start of result set

    Example: 20

Endpoint

GET/api/v1/alerting/events/{eventId}/comments

/api/v1/alerting/events/{eventId}/comments

Operation ID

ListAlertEventComments

Permalink

Request Example

curl -X GET '{host}/api/v1/alerting/events/{eventId}/comments' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 3,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history