Truztcube Docs
API ReferenceOrganisation KYC

[Admin] Approve KYC

Admin endpoint to approve a KYC submission. If directors are added, this will trigger enterprise registration with NIMC.

POST/v1/organisation-kyc/admin/approve
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/organisation-kyc/admin/approve" \  -H "Content-Type: application/json" \  -d '{}'
{  "success": true,  "statusCode": 200,  "message": "Request processed successfully",  "timestamp": "2025-10-20T16:30:00.000Z",  "path": "/v1/auth/register",  "data": {    "id": "kyc_abc123",    "organisationId": "org_xyz789",    "status": "APPROVED",    "approvedAt": "2025-10-21T12:00:00.000Z",    "reviewedBy": "admin_123",    "enterpriseRegistration": {},    "message": "KYC approved successfully"  }}