コンテンツにスキップ

List logging policy notifications

GET
/api/admin/logging-policies/notifications
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/api/admin/logging-policies/notifications \
--header 'Authorization: Bearer <token>'

List unresolved logging-specific notification events such as destination health, delivery failures, fallback usage, and DLQ backlog alerts.

tenant_id
string

Tenant id filter. Platform admins can supply another tenant; tenant-scoped admins are constrained to their current tenant.

filter[tenant_id]
string

Alternative tenant id filter syntax.

status
string

Notification status filter. Defaults to unresolved logging notification statuses.

severity
string

Notification severity filter.

since
integer format: int64

Lower created_at bound as epoch milliseconds.

until
integer format: int64

Upper created_at bound as epoch milliseconds.

limit
integer format: int64
>= 1 <= 100

Maximum number of items to return.

Logging policy notification events that still require attention.

Media type application/json
object
items
required
Array<object>
object
key
additional properties
total
required
integer
page
object
key
additional properties
key
additional properties
Example
{
"items": [
{
"id": "notif_123",
"tenant_id": "tenant_123",
"category": "logging_delivery_failure",
"event_type": "logging.delivery.failed",
"severity": "high",
"status": "pending",
"deduplication_key": "logging:tenant_123:delivery:failed",
"payload_json": "{\"destination_id\":\"dest_123\",\"error\":\"timeout\"}",
"attempts": 2,
"last_error": "delivery_timeout",
"next_attempt_at": "2026-02-01T00:10:00.000Z",
"created_at": "2026-02-01T00:00:00.000Z",
"updated_at": "2026-02-01T00:05:00.000Z",
"delivered_at": null
}
],
"total": 1
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}