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

CaseManager-AI

Coming soon

End-to-end compliance case management linking KYC, AML, Sanctions and SAR plugin results into a single auditable case file. Tracks case status, MLRO assignments, decision history and regulatory deadlines. Provides a complete chain of evidence from initial alert to filing.

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/cases/create

Request parameters

ParameterTypeRequiredDescription
customer_idstringYesCustomer identifier for the case.
jurisdictionstringYesOne of: CA, AE, SA, GB.
case_typestringYesOne of: kyc_review, aml_investigation, sanctions_match, sar_filing, edd_review.
prioritystringNoOne of: low, medium, high, critical (default: medium).
linked_request_idsarrayNoArray of plugin request IDs to link to this case.
assigned_tostringNoMLRO or compliance officer identifier.
notesstringNoInitial case notes.

Response fields

ParameterTypeRequiredDescription
data.case_idstringYesUnique case identifier for tracking.
data.statusstringYesCase status: open, in_review, escalated, closed.
data.regulatory_deadlinestringYesISO 8601 deadline for required regulatory action based on jurisdiction and case type.
data.linked_pluginsarrayYesSummary of all linked plugin results with their decisions.
data.audit_trailarrayYesImmutable log of all case actions, assignments and decisions.
data.ai_recommendationstringYesRecommended next action and deadline summary.

cURL

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

Code examples available when plugin launches