KodexakodéxaShieldAPI Reference
https://shield.kodexa.systems/apiPortal →
Reporting Layer

Audit-AI

Coming soon

Query the immutable audit trail of all compliance decisions. Every KYC, AML, Sanctions check and human review is logged permanently.

This plugin is in development. The API schema below is planned and subject to change. You can design your integration now using this reference.

Endpoint

POST/api/audit/query

Request parameters

ParameterTypeRequiredDescription
customer_idstringNoFilter by customer ID.
pluginstringNoFilter by plugin: kyc, aml, or sanctions.
from_datestringNoStart date in YYYY-MM-DD format.
to_datestringNoEnd date in YYYY-MM-DD format.
limitintegerNoMaximum records to return. Default: 50.

Response fields

ParameterTypeRequiredDescription
data.entriesarrayYesAudit log entries with: id, plugin, action, customer_id, decision, performed_by, created_at.
data.totalintegerYesTotal matching records.
data.immutablebooleanYesAlways true — audit log cannot be modified.

cURL

# Coming soon
curl -X POST \
  https://shield.kodexa.systems/api/audit/query \
  -H "Content-Type: application/json" \
  -d '{...}'

Code examples available when plugin launches