Skip to content

List logging DLQ items

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

Lists logging DLQ items with tenant/lane/status/time filters and cursor pagination.

tenant_key
string

Filter by logging tenant key.

tenant_id
string

Filter by tenant ID; resolved to a tenant key.

lane
string

Filter by delivery lane.

status
string

Filter by item or delivery status.

cursor
string

Signed pagination cursor.

limit
integer
>= 1 <= 500

Maximum items to return.

Successful JSON response.

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": "dlq_123",
"tenant_key": "tenant-key-123",
"payload_type": "retry_delivery",
"schema_version": 1,
"lane": "critical",
"destination_id": "dest_123",
"payload_object_ref": "r2://logging-dlq/dlq_123.json",
"error_class": "delivery_failed",
"attempt_count": 3,
"status": "open",
"created_at": 1770000000000,
"updated_at": 1770000000000
}
],
"total": 1,
"page": {
"next_cursor": null,
"has_more": false,
"limit": 50
}
}

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"
}