Skip to content

Apply safe message job repairs

POST
/api/admin/logging-policies/message-job-repair-findings/apply-safe
Code sample: Shell / cURL
curl --request POST \
--url https://auth.example.com/api/admin/logging-policies/message-job-repair-findings/apply-safe \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "finding_id": "lrf_123", "limit": 25 }'

Applies safe export-part rebuild repairs for one finding or a bounded batch of open findings.

Media type application/json
object
finding_id
string
limit
integer
>= 1 <= 50
key
additional properties
Example
{
"finding_id": "lrf_123",
"limit": 25
}

Successful JSON response.

Media type application/json
object
result
required
object
key
additional properties
audit_id
One of:
string
job_id
string
key
additional properties
Example
{
"result": {
"applied_count": 1,
"skipped_count": 0,
"applied": [
{
"id": "lrf_123",
"export_job_id": "lexp_123",
"message_job_id": "lmj_repair_123",
"queued": true,
"queue_binding": "LOGGING_DELIVERY_BULK_QUEUE"
}
],
"skipped": []
},
"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"
}