Identity Layer
eKYC-AI
Coming soonDigital-only identity verification with no human touch required. Liveness detection, NFC chip reading and government database verification for fully automated onboarding.
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/ekyc/verifyRequest parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
customer_id | string | Yes | Your internal reference for this customer. |
jurisdiction | string | Yes | One of: CA, AE, SA. |
document_data | string | Yes | Base64-encoded identity document. |
liveness_data | string | Yes | Base64-encoded liveness video or image sequence. |
nfc_data | object | No | NFC chip data from ePassport if available. |
Response fields
| Parameter | Type | Required | Description |
|---|---|---|---|
data.status | string | Yes | approved, rejected, or review_required. |
data.liveness_passed | boolean | Yes | Whether liveness detection passed. |
data.government_verified | boolean | Yes | Whether verified against government database. |
data.confidence_score | integer | Yes | AI confidence 0–100. |
cURL
# Coming soon
curl -X POST \
https://shield.kodexa.systems/api/ekyc/verify \
-H "Content-Type: application/json" \
-d '{...}'Code examples available when plugin launches