Comment on page
Submit Address Verification
Please note that you are required to have a webhook set for address 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/addresses
Submit Address for Verification
JSON
CURL
{
"street": "270 Murtala Muhammed Way, Alagomeji. Yaba",
"lga": "surulere",
"state": "lagos",
"landmark": "Beside GTbank",
"applicant": {
"idType": "NIN",
"idNumber": "10000000001",
"firstname": "john",
"lastname": "doe",
"phone": "08121234567",
"dob":"04-04-1944"
}
}
curl --verbose
--header "Authorization: Bearer <token>"
--data '{"street": "270 Murtala Muhammed Way, Alagomeji. Yaba", "lga": "sululere", "city": "lagos","landmark": "Beside GTbank","applicant": { "idType": "NIN", "idNumber": "10000000001", "firstname": "john", "lastname": "doe", "phone": "08121234567", "dob":"04-04-1944"}}'
--request "POST" "https://vapi.verifyme.ng/v1/verifications/addresses"
Last modified 1yr ago