Jobzy Logo
KYCKenya

Driving License Verification

Here's how you can verify an employee's Kenyan Driving License using the Talent API


Service Endpoint:
baseUrl/kye/ke/drivers-license
For the baseUrl refer Here

Sample Request Body Object:

const sampleRequest = {
  id: "111111111",
};

Sample Response Body Object:

const sampleFoundResponse = {
  success: true,
  statusCode: 200,
  message: "success",
  data: {
    id: "66ec6c0bb62925a49d7991f9",
    parentId: null,
    status: "found",
    reason: null,
    dataValidation: false,
    selfieValidation: false,
    nationalId: "38039808",
    fullName: "SILVERSTEIN MWANGANGI KYALO",
    address: {
      city: "Nairobi",
      town: null,
      lga: null,
      state: null,
      addressLine: "Langata",
    },
    issuedDate: "2021-01-27T00:00:00.000Z",
    expiredDate: "2024-09-02T00:00:00.000Z",
    mobile: "254740364279",
    kra: "A015194601C",
    dateOfBirth: "10-Apr-00",
    isConsent: true,
    idNumber: "111111111",
    businessId: "62b2e8b281442b03187f7896",
    classOfLicense: "B",
    interimNumber: "IDL-698600",
    licenseNumber: "DL-1164090",
    bloodGroup: "UNKNOWN",
    email: "1@gmail.com",
    smartDlDetails: {
      hasSmartDl: "Waiting to Pay Interim",
      smartDlBookingTestCenter: "146",
      smartDLBookingStatus: "BOOKED",
      smartDlBookingDate: "02-May-21",
      smartDlBookingStartDate: "02-May-21",
    },
    allValidationPassed: true,
    gender: "male",
    type: "keDriversLicense",
    requestedAt: "2024-09-19T18:23:09.514Z",
    requestedById: "62b2e8b381442b75857f7898",
    country: "KE",
    createdAt: "2024-09-19T18:23:10.018Z",
    lastModifiedAt: "2024-09-19T18:23:10.018Z",
    adverseMediaReport: null,
    amlReport: null,
    metadata: {},
    requestedBy: {
      firstName: "Abdulazeez",
      lastName: "Shittu",
      middleName: "",
      id: "62b2e8b381442b75857f7898",
    },
  },
  links: [],
};

NOTE: For a full request function sample refer to Sample Request Function

On this page