Full KYC Verification
# Introduction
This helps to pull all users KYC info, combining identity verification, employer verification and KRA pin verification:
# Request Parameters
The following parameters are expected:
| Field | Description | Type |
|---|---|---|
| search_type | The Spincrunch Search type you want to do. FULLKYC | String |
| identifier | The ID Number whose KYC you want to verify | String |
| consent | Indicates whether the data owner has consented to identity verification 1 if yes 0 if no.1 if yes 0 if no. | String |
| consent_collected_by | Name or identifier of the person who provided the data owner’s consent. | String |
Please find sample implementation on the left
# Response Parameters
Below is a sample response
# Full KYC Search
'search_type' is
FULLKYC,identifieris the client's ID Number
Search details on a customer. As sample response is as follows:
{
"code": "200.001",
"data": {
"id_number": "XXXXXXXX",
"surname": "XXXXXXX",
"first_name": "XXXXXXX",
"serial_number": "",
"phone_number": "",
"email": "",
"other_name": "XXXXXXX",
"gender": "M",
"date_of_birth": "1998-01-13T00:00:00",
"citizenship": "KENYAN",
"place_of_birth": "XXXXXXX",
"place_of_live": "XXXXXXXX",
"employed": true,
"employer_details": {
"employerName": "XXXXXXXX",
"jobGroup": null
},
"full_name": "XXXXXXX",
"KRAPIN": "XXXXXXXX",
"TypeOfTaxpayer": "Individual",
"Name": "XXXXXXX",
"StatusOfPIN": "Active"
}
}