v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Governance

Get audit log by ID

Use this endpoint to retrieve the details of a specific audit log entry by its identifier. Audit logs contain immutable records of all system operations for compliance and debugging purposes.

get/v1/governance/audit-logs/{id}

Path parameters

idstring uuid required

Audit Log ID

Headers

X-Request-Idstring

A unique identifier for tracing the request across services.

Response

Indicates that the request was successful and the response contains the expected data.

actionstring

Action that was performed

actorIdstring

ID of the actor who performed the action

changesinteger[]

Changes made to the entity

createdAtstring

Creation timestamp in RFC3339 format

entityIdstring

ID of the entity that was modified

entityTypestring

Type of entity that was modified

idstring

Unique identifier for the audit log entry

tenantIdstring

Tenant ID that owns this audit log entry

truncatedboolean

True when the original audit diff exceeded the payload cap and was replaced with a truncation marker

originalSizeinteger

Byte size of the original diff before truncation; zero when not truncated

Example response

{
  "action": "CREATE",
  "actorId": "user@example.com",
  "createdAt": "2025-01-15T10:30:00.000Z",
  "entityId": "019c96a0-10a0-72d2-9fb0-2b7de8093182",
  "entityType": "reconciliation_context",
  "id": "019c96a0-0b61-71a2-8595-dde786b5bcc6",
  "tenantId": "019c96a0-0a98-7287-9a31-786e0809c769"
}