コンテンツにスキップ

Resolve a logging policy notification

POST
/api/admin/logging-policies/notifications/{id}/resolve
Code sample: Shell / cURL
curl --request POST \
--url https://auth.example.com/api/admin/logging-policies/notifications/example/resolve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'

Mark an unresolved logging-specific notification as suppressed and write an admin audit event.

id
required
string

Resolve an unresolved logging policy notification by suppressing the event.

Media type application/json
object
key
additional properties
Example
{}

Logging policy notification resolution result.

Media type application/json
object
result
required
object
key
additional properties
audit_id
One of:
string
job_id
string
key
additional properties
Example
{
"result": {
"id": "notif_123",
"status": "suppressed",
"updated_at": "2026-02-01T00:05:00.000Z"
},
"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"
}