Jobzy Logo
KYCKenya

Employment History Verification

Here's how you can verify an employee's Employement History using the Talent API


Service Endpoint:
baseUrl/kye/ke/employement
For the baseUrl refer Here

Sample Request Body Object with idType set to either "national-id" or "passport":

const sampleRequest = {
  id: "1234567",
  idType: "national-id" | "passport",
};

Sample Response Body Object when idType: is set to "national-id":

const sampleNationalIdFoundResponse = {
  success: true,
  statusCode: 200,
  message: "success",
  data: {
    id: "64ec17eec79f7a16971c65bc",
    parentId: null,
    status: "found",
    reason: null,
    dataValidation: false,
    selfieValidation: false,
    dateOfBirth: "1999-12-31T21:00:00Z",
    identityType: "national-id",
    isConsent: true,
    idNumber: "1234567",
    businessId: "628b38f03ae28a14f52d4bf7",
    firstName: "Kangethe",
    middleName: "Kariuki",
    lastName: "Simon",
    fullName: "Kangethe Kariuki  Simon",
    gender: "Male",
    maritalStatus: "Married",
    employmentName: "Teachers Service Commission.",
    lastEmployment: "NotSpecified",
    type: "keCreditInfoEmployment",
    allValidationPassed: true,
    requestedAt: "2023-08-28T03:43:43.294Z",
    requestedById: "628b38f03ae28a5a122d4bf3",
    country: "KE",
    createdAt: "2023-08-28T03:43:43.489Z",
    lastModifiedAt: "2023-08-28T03:43:43.489Z",
    metadata: {},
    requestedBy: {
      firstName: "API",
      lastName: "User",
      middleName: "",
      id: "628b38f03ae28a5a122d4bf3",
    },
  },
  links: [],
};

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

On this page