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

GetAlertAssignmentHistory

Get the full assignment history for an alert including all reassignments

Execution Availability

Try It Out

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

Path Parameters

Request Inputs

Path Parameters

  • alertIdStringRequired

    Alert identifier to retrieve assignment history for

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of assignment history entries

    Example: (nested array)

    • operatorUserIdString

      User who performed the assignment change

      Example: admin

    • assigneeUserIdString

      User who was assigned the alert

      Example: user-001

    • reasonString

      Reason for the assignment action

      Example: On-call rotation

    • assignmentSourceString

      Source of the assignment (auto, manual, escalation)

      Example: auto

    • timestampString

      Timestamp of the assignment action

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

  • totalInteger

    total number of history records for this alert; no pagination applied.

    Example: 3

Endpoint

GET/api/v1/alerting/assignments/{alertId}/history

/api/v1/alerting/assignments/{alertId}/history

Operation ID

GetAlertAssignmentHistory

Permalink

Request Example

curl -X GET '{host}/api/v1/alerting/assignments/{alertId}/history' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 3
}

Change History

This API has no change history records yet.

View all change history