Skip to content

Get logging export

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

Returns one logging export job, subject to tenant and sensitive-detail access checks.

id
required
string

Successful JSON response.

Media type application/json
object
item
required
object
key
additional properties
key
additional properties
Example
{
"item": {
"id": "lexp_123",
"tenant_key": "tenant_123",
"log_type": "security",
"plane": "control",
"format": "jsonl",
"status": "queued",
"artifact_object_ref": null,
"manifest_object_ref": null,
"checksum_sha256": null,
"record_count": 0,
"byte_count": 0,
"requested_by": "admin_123",
"error_class": null,
"filter_json": "{\"limit\":1000}",
"created_at": 1770000000,
"updated_at": 1770000000,
"completed_at": null,
"expires_at": 1770604800
}
}

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