コンテンツにスキップ

Get a logging message job

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

Return a single logging message job after checking tenant-key access.

id
required
string

Single message job from the SQL logging message job store.

Media type application/json
object
item
required
object
key
additional properties
key
additional properties
Example
{
"item": {
"id": "lmj_123",
"kind": "retry_delivery",
"status": "queued",
"lane": "default",
"criticality": "standard",
"priority": 10,
"tenant_key": "tenant_123",
"topology_type": "shared",
"scope_type": "tenant",
"scope_id": "tenant_123",
"scope_key": "tenant_123",
"source_type": "dlq_item",
"source_id": "dlq_123",
"root_job_id": null,
"parent_job_id": null,
"depth": 0,
"payload_object_ref": "logging-message-payloads/lmj_123.json",
"payload_sha256": "sha256:abc123",
"payload_type": "retry_delivery",
"payload_schema_version": 1,
"redacted_summary": {
"event_count": 1
},
"validation_summary": {
"valid": true
},
"idempotency_key": "retry:dlq_123",
"dedupe_until": 1770003600000,
"not_before": 1770000000000,
"attempt_count": 0,
"max_attempts": 5,
"attempt_policy": {
"maxAttempts": 5,
"leaseTimeoutMs": 600000
},
"has_claim_token": false,
"claimed_at": null,
"claimed_until": null,
"requested_by": "admin_123",
"reason": "manual retry",
"error_class": null,
"last_error": null,
"blocked_reason": null,
"cancel_requested_at": null,
"cancelled_by": null,
"created_at": 1770000000000,
"updated_at": 1770000000000,
"started_at": null,
"completed_at": null,
"expires_at": 1770086400000
}
}

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