Skip to main content
Alerting & Response/Alert Channels & Integrations

GetAlertNotificationRetryQueueStats

Retrieve retry queue statistics and list of pending/dead notifications

GET/api/v1/alerting/notification-retry

Operation ID

GetAlertNotificationRetryQueueStats

Since

1.0.0

Execution Mode

Synchronous

Auth Context

Auth Required

Auth Context

Send these values as request headers when calling this API.

AuthorizationstringRequired

Bearer Token

X-Tenant-IDstring

X-Tenant-ID

Request Inputs

This API requires no request parameters.

Responses

200 OK
200 OK

On success, this API returns the following response structure.

  • pendingCount
    Integer

    Number of notifications pending retry

    Example: 5

  • deadCount
    Integer

    Number of dead-lettered notifications

    Example: 2

  • items
    List

    List of retry queue entries

    Example: (nested array)

    • notificationId
      String

      Unique identifier of the notification

      Example: notif-001

    • alertId
      String

      Alert identifier this notification belongs to

      Example: alert-789xyz

    • channelType
      String

      Channel type used for delivery (email, webhook, etc.)

      Example: email

    • payload
      String

      Serialized notification payload

      Example: {...}

    • attemptCount
      Integer

      Number of delivery attempts made so far

      Example: 3

    • maxAttempts
      Integer

      Maximum number of retry attempts allowed

      Example: 5

    • nextRetryAt
      String

      Scheduled time for the next retry attempt

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

    • lastError
      String

      Error message from the last failed attempt

      Example: connection timeout

    • status
      String

      Current status: pending, dead, or retrying

      Example: dead

    • createdAt
      String

      Timestamp when this retry entry was created

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