VerifyMe API
  • Welcome
  • general
    • Getting Started
    • Introduction
    • Authentication
    • About Verifications
  • Identity verifications
    • Bank Verification Number (BVN)
    • Corporate Affairs Commission
    • Drivers License
    • Identity Biometrics
    • BVN Identity Matching
    • Virtual NIN (vNIN)
    • National Identification Number(NIN)
    • Tax Identification Number
    • Voters Card
  • Address Verification
  • Submit Address Verification
  • Get Address Verification By ID
  • Get Address Verifications
  • Cancel Address Verification
  • Fetch an Address By Identity
  • Business Verification
    • Submit Business Verification
    • Get Business Verification By ID
    • Get Business Verifications
    • Cancel Business Verification
  • Guarantor Verification
    • Submit Guarantor Verification
    • Get Guarantor Verifications
    • Get Guarantor Verification By ID
    • Cancel Guarantor Verification
  • employment Verification
    • Submit Employment History Verification
    • Get Employment History Verifications
    • Get Employment History Verification By ID
    • Cancel Employment History Verification
  • Property Verification
    • Submit Property Verification
  • Liveness Verification
  • LOCATION
    • Get Countries
    • Get Country By ID
    • Get State By ID
    • Get State For Country
    • Get Lga By Country
    • Get Lga By State
    • Get Lga By ID
  • Bank
    • Get Banks
    • Get Account Details
  • BVN NUBAN
    • Get Nuban Banks
    • Get BVN details by NUBAN
  • webhooks
    • About Webhooks
    • Verified Address
    • Verified Guarantor
    • Verified Employment History
    • Verified Property
  • Product statuses
  • Error Status Codes
  • Glossary
  • Widget Services
    • VerifyMe Liveness Widget
    • Requery Liveness Verification
Powered by GitBook
On this page

Was this helpful?

  1. employment Verification

Get Employment History Verifications

Get Employment History Verifications

GET https://vapi.verifyme.ng/v1/verifications/employments

This endpoint allows you to get all employment history verifications.

Query Parameters

Name
Type
Description

limit

number

Number of verifications to fetch at once

offset

number

Number of verifications to skip per call

Headers

Name
Type
Description

Authentication

string

Authorization Token

{
    "status": "success",
    "_pagination": {
        "limit": 0,
        "offset": 0,
        "total": 1
        },
    "data": [
            {
                "id": 2455,
                "employerName": "verifyme",
                "employerPhone": "08128730170",
                "employerEmail": "hr@verifyme.ng",
                "startDate": "5/6/2020",
                "endDate": "10/12/2020",
                "title": "plumber",
                "employeeStartDate": "2011-01-1",
                "rehire": true,
                "employerRespondedAt": "Mon Dec 28 2020 20:22:04 GMT+0000 (Coordinated Universal Time)",
                "applicant": {
                    "firstname": "John",
                    "lastname": "Doe",
                    "middlename": " ",
                    "phone": "+2348123456789",
                    "gender": "Male",
                    "photo": "<base64 image>"
                },
                "status": {
                    "status": "VERIFIED",
                    "subStatus": "VERIFIED",
                    "state": "COMPLETE"
                },
                "industry": "domestic",
                "comment": "good guy",
                "verifiedPoc": false,
                "companyName": "verifyme",
                "employmentType": "Full-Time",
                "supervisorName": "john",
                "supervisorTitle": "plumber",
                "jobBenefits": "Health Insurance,Severance Package,Paid Time Off,Transport Allowance,Housing Allowance,Training, Certification and Professional Membership Dues,Parental Leave,Stock Options,others",
                "currentlyEmployed": true,
                "employerConsented": true,
                "attestatorName": "kola",
                "attestatorTitle": "HR manager",
                "attestatorContact": "kola@verifyme.ng",
                "companyAddress": "170 muritala mohammed way",
                "compensationRate": "Monthly",
                "salaryRange": "101,000 - 3000,000",
                "supervisorEmail": "john@gmail.com",
                "supervisorPhone": "+2348128730170",
                "employeeCurrentlyEmployed": false
            }
        ]
}
{
    "status": "error",
    "message": "string",
    "code": "INTERNAL_SERVER_ERROR"
}

curl --verbose  
    --header "Authorization: Bearer <token>" 
    --request "GET" "https://vapi.verifyme.ng/v1/verifications/employment?limit=10&offset=0"
PreviousSubmit Employment History VerificationNextGet Employment History Verification By ID

Last updated 4 years ago

Was this helpful?