Jobzy Logo
KYCKenya

Alien ID

Here's how you can verify a Kenyan issued Alien ID using the Talent API


Service Endpoint:
baseUrl/kye/ke/alien-id
For the baseUrl refer Here

Sample Request Body Object:

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

Sample Response Body Object:

const sampleAlienIdFoundResponse = {
  success: true,
  statusCode: 200,
  message: "success",
  data: {
    id: "66ec6bb1d0bdbb9c4fce6122",
    parentId: null,
    status: "found",
    reason: null,
    dataValidation: false,
    selfieValidation: false,
    firstName: "AMANI",
    middleName: "DIEUDONNE",
    lastName: "UWAYO",
    fullName: "UWAYO AMANI DIEUDONNE",
    image: null,
    idType: "id",
    nationality: "Alien",
    dateOfBirth: "1992-11-19",
    isConsent: true,
    idNumber: "111111111",
    businessId: "62b2e8b281442b03187f7896",
    type: "keAlienId",
    allValidationPassed: true,
    gender: "female",
    requestedAt: "2024-09-19T18:21:39.311Z",
    requestedById: "62b2e8b381442b75857f7898",
    country: "KE",
    createdAt: "2024-09-19T18:21:39.670Z",
    lastModifiedAt: "2024-09-19T18:21:39.670Z",
    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