Jobzy Logo
KYCNigeria

Virtual National Identification Number Verification

Here's how you can verify a Nigerian VNIN using the Talent API


Service Endpoint:
baseUrl/kye/ng/vnin
For the baseUrl refer Here

Sample Request Body Object:

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

Sample Response Body Object:

const sampleFoundResponse = {
  success: true,
  statusCode: 200,
  message: "success",
  data: {
    id: "637beef426cb96b1fa6a8d3f",
    validations: {
      data: {
        lastName: {
          validated: true,
          value: "Citizen",
        },
        dateOfBirth: {
          validated: false,
          value: "1988-04-04",
        },
        firstName: {
          validated: true,
          value: "Proud",
        },
      },
      validationMessages: "Date of birth does not match",
    },
    parentId: null,
    status: "found",
    reason: null,
    dataValidation: true,
    selfieValidation: false,
    firstName: "PROUD",
    middleName: "NIGERIAN",
    lastName: "CITIZEN",
    image:
      "data:image/jpg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAopJQgf/2Q==",
    mobile: "2341234567890",
    mobileIntFormat: "2341234567890",
    agentId: "ABCDEF-8910",
    vNINUserId: "ABCDEF-8910",
    dateOfBirth: "1960-10-01",
    vNIN: "YV111111111111FY",
    isConsent: true,
    idNumber: "YV111111111111FY",
    businessId: "6222a5ea3e7a41c29c030fac",
    type: "vnin",
    allValidationPassed: false,
    gender: "male",
    requestedAt: "2022-11-21T21:34:44.109Z",
    requestedById: "6222a5ea3e7a41c29c030fad",
    country: "NG",
    createdAt: "2022-11-21T21:34:44.124Z",
    lastModifiedAt: "2022-11-21T21:34:44.124Z",
    metadata: {},
    requestedBy: {
      firstName: "API",
      lastName: "User",
      middleName: "",
      id: "6222a5ea3e7a41c29c030fad",
    },
  },
  links: [],
};

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

On this page