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

GetAlertAssignment

Get the current assignment details for a specific alert

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 get assignment for

Responses

200 OK

On success, this API returns the following response structure.

  • alertIdString

    Alert identifier for this assignment

    Example: alert-789xyz

  • assigneeUserIdString

    User ID of the assigned engineer

    Example: user-001

  • assigneeNameString

    Display name of the assigned engineer

    Example: John Smith

  • assignedAtString

    Timestamp when the assignment was made

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

  • assignmentSourceString

    Source of the assignment (auto, manual, escalation)

    Example: auto

Endpoint

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

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

Operation ID

GetAlertAssignment

Permalink

Request Example

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

Response Example

200
{
  "alertId": "alert-789xyz",
  "assigneeUserId": "user-001",
  "assigneeName": "John Smith",
  "assignedAt": "example",
  "assignmentSource": "auto"
}

Change History

This API has no change history records yet.

View all change history