VerifyMe API
Search
K

Submit Employment History Verification

Please note that you are required to have a webhook set for employment verification requests to be successful. If they are not set, you will not get notified when the verification has been completed.
post
https://vapi.verifyme.ng
/v1/verifications/employments
Submit Employment History for Verification

Sample Request

JSON
CURL
{
"applicant": {
"idType": "NIN",
"idNumber": "10000000001",
"firstname": "john",
"lastname": "doe",
"dob":"04-04-1944",
"phone": "08121234567"
},
"employerName":"verifyme",
"employerEmail":"[email protected]",
"employerPhone":"0812345678",
"startDate":"5/6/2020",
"endDate":"10/12/2020",
"jobTitle":"plumber",
"currentlyEmployed":true,
"contactPersonName":"james bay"
}
curl --location --request POST 'https://vapi.verifyme.ng/v1/verifications/employment' \
--header 'Authorization: Bearer <live or test key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"applicant": {
"idType": "NIN",
"idNumber": "10000000001",
"firstname": "john",
"lastname": "doe",
"dob":"04-04-1944",
"phone": "08121234567"
},
"employerName":"verifyme",
"employerEmail":"[email protected]",
"employerPhone":"0812345678",
"startDate":"5/6/2020",
"endDate":"10/12/2020",
"jobTitle":"plumber",
"currentlyEmployed":true,
"contactPersonName":"james bay"
}'