コンテンツにスキップ

Get runtime logging topology

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

Inspect configured runtime bindings and resolved tenant runtime profiles.

tenant_id
string

Tenant id filter. Platform admins can supply another tenant; tenant-scoped admins are constrained to their current tenant.

filter[tenant_id]
string

Alternative tenant id filter syntax.

Successful JSON response.

Media type application/json
object
item
required
object
key
additional properties
key
additional properties
Example
{
"item": {
"tenant_id": "tenant_123",
"tenant_key": "tenant_123",
"bindings": {
"db": true,
"db_admin": true,
"db_pii": true,
"logging_index_db": false,
"authrim_config": true,
"diagnostic_logs": true,
"audit_archive": true,
"sensitive_details": true,
"logging_delivery_critical_queue": true,
"logging_delivery_queue": true,
"logging_delivery_bulk_queue": true
},
"runtime_profiles": {
"profile_id": "builtin:storage:shared-d1"
},
"checked_at": 1770000000
}
}

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