submitNinKyc
Bearer token requiredSubmit Tier 2 (NIN).
Endpoint
POST
/_serverFn/submitNinKycRequest body
| Field | Type | Required |
|---|---|---|
| nin | string | Yes |
| slipPath | string | Yes |
| fullName | string | No |
Response codes
| 401 | Unauthorized – missing or invalid bearer token. |
| 400 | Validation failed – input did not match the schema. |
| 429 | Rate limited – slow down and retry. |
| 500 | Server error – reported and logged with an error ID. |
curl -X POST https://centuryvtu.com/_serverFn/submitNinKyc \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{"data":{"nin":"string","slipPath":"string","fullName":"string"}}'Example response
{ ok: true }