コンテンツにスキップ

List notification center events

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

List notification center events with filters and grouped summary metadata.

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.

category
string

Comma-separated notification category filter.

status
string

Notification status filter. Use unresolved to include pending, failed, and dead letter events.

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 <= 200

Maximum number of items to return.

Notification center events with filter metadata and status summary.

Media type application/json
object
items
required
Array<object>
object
id
string
tenant_id
string
category
string
event_type
string
severity
string
status
string
deduplication_key
string
payload_json
string
attempts
integer format: int64
last_error
Any of:
string
next_attempt_at
Any of:
string
created_at
string
updated_at
string
delivered_at
Any of:
string
total
integer format: int64
page
object
filters
object
key
additional properties
summary
Array<object>
object
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,
"page": {
"filters": {
"tenant_id": "tenant_123",
"categories": [
"logging_delivery_failure"
],
"status": "unresolved",
"severity": null,
"time_start": null,
"time_end": null
},
"summary": [
{
"category": "logging_delivery_failure",
"severity": "high",
"status": "pending",
"count": 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"
}