Admin to update Employee's KYC status
This api is for Admin to update the KYC status of an employee with attached card kit
REST
Headers
Fields | Type | Description | Example | O/M | Data Management |
---|---|---|---|---|---|
URL | string | /v1/employees/<employee_id>/kycStatus | M | ||
METHOD | string | PUT | M | ||
content-type | string | JSON | application/json | M | |
x-access-token | string | Session token with validity | token | M |
Request
{
"kycStatus": "FULL_KYC or MIN_KYC or NO_KYC"
}
Response
On Success
{
"success": true
}
On Error
{
"error": "Unable to update kycStatus to Employee kyc field",
"success": false
}