Skip to main content

Audit Trail

Every decision, status change, override, escalation, and automated action in the Zenoo platform is recorded in an immutable audit trail. The audit trail is designed for regulatory compliance with FinCEN (5-year retention), OFAC (10-year), FCA, FATF, and EU AMLD5 requirements.

Immutability

Audit log entries cannot be edited or deleted after creation. This is enforced at the platform level via a validation rule that rejects all update operations on existing records. Only inserts are permitted.
Audit log records are immutable by design. The API does not support updating or deleting audit entries. Attempting to do so returns a 403 Forbidden error.

Event types

The audit trail captures 32 event types across seven categories:

Case events

Alert events

Risk events

Check events

Document events

Reviewer events

Other events

Querying the audit trail

Get audit logs for a case

Filter by event type

Filter by date range

Response format

Compliance export

Export the full audit trail for a case as CSV for regulatory filing:
The CSV includes all fields: timestamp, event type, severity, description, old/new values, actor name, and actor email. Actor names are denormalized at write time so they survive user deactivation.

Design principles

Next steps