Skip to content

List catalog repair findings

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

Detects current catalog repair findings, optionally scoped by tenant, log type, plane, and pending TTL.

limit
integer
>= 1

Maximum number of records to return.

tenant_key
string

Optional tenant key filter.

log_type
string

Optional log type filter.

plane
string

Optional logging plane filter.

pending_ttl_ms
integer

Pending object age threshold.

Successful JSON response.

Media type application/json
object
items
required
Array<object>
object
key
additional properties
total
required
integer
page
object
key
additional properties
key
additional properties
Example
{
"items": [
{
"id": "lde_123",
"tenant_key": "tenant-key-123",
"lane": "critical",
"status": "failed",
"log_type": "security",
"plane": "control",
"record_count": 10,
"created_at": 1770000000000
}
],
"total": 1,
"page": {
"next_cursor": null,
"has_more": false,
"limit": 50
}
}

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

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

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