Apply DLQ bulk replay
POST
/api/admin/logging-policies/dlq/bulk-replay/apply
Code sample: Shell / cURL
curl --request POST \ --url https://auth.example.com/api/admin/logging-policies/dlq/bulk-replay/apply \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "tenant_key": "tenant_123", "lane": "default", "destination_id": "dest_123", "payload_type": "retry_delivery", "limit": 25, "reason": "Replay recovered destination failures." }'Enqueues retry delivery jobs for matching open DLQ items and records audit evidence.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
tenant_key
string
tenant_id
string
lane
string
destination_id
string
payload_type
string
limit
integer
reason
string
key
additional properties
Example
{ "tenant_key": "tenant_123", "lane": "default", "destination_id": "dest_123", "payload_type": "retry_delivery", "limit": 25, "reason": "Replay recovered destination failures."}Responses
Section titled “ Responses ”Successful JSON response.
Media type application/json
object
Example
{ "result": { "requested_count": 1, "applied_count": 1, "failed_count": 0, "applied": [ { "dlq_item_id": "dlq_123", "message_job": { "id": "lmj_123", "kind": "retry_delivery", "status": "queued", "lane": "default", "criticality": "standard", "tenant_key": "tenant_123", "source_type": "dlq_item", "source_id": "dlq_123", "payload_object_ref": "r2://logging-payloads/lmj_123.json", "created_at": 1770000000, "updated_at": 1770000000 } } ], "failed": [] }, "audit_id": "audit_123"}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"}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"}