List logging delivery events
GET
/api/admin/logging-policies/delivery-events
Code sample: Shell / cURL
curl --request GET \ --url https://auth.example.com/api/admin/logging-policies/delivery-events \ --header 'Authorization: Bearer <token>'Lists logging delivery events with tenant, lane, status, time window, and signed cursor pagination filters.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” 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
Maximum items to return.
Responses
Section titled “ Responses ”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": "evt_123", "tenant_key": "tenant_123", "lane": "default", "status": "failed", "log_type": "security", "plane": "control", "record_count": 10, "created_at": 1770000000 } ], "total": 1, "page": { "next_cursor": null, "has_more": false, "limit": 50 }}default
Section titled “default ”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"}