Submit Property Verification
Please note that you are required to have a webhook set for property 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/properties
Submit Property for Verification
JSON
CURL
{
"customerReference": "yo0pvJLUGLy14IqRKrdHz",
"propertyName": "Landmark Apartments",
"propertyType": "Apartment",
"address": "Adekunle Fasasi",
"lgaName": "Agege",
"contactPerson": {
"firstName": "Henry",
"lastName": "Abu",
"phone": "08074856213",
"email": "[email protected]"
}
}
curl --location --request POST 'https://vapi.verifyme.ng/v1/assets/property' \
--header 'Authorization: Bearer <live or test key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"customerReference": "yo0pvJLUGLy14IqRKrdHz",
"propertyName": "Landmark Apartments",
"propertyType": "Apartment",
"address": "Adekunle Fasasi",
"lgaName": "Agege",
"contactPerson": {
"firstName": "Henry",
"lastName": "Abu",
"phone": "08074856213",
"email": "[email protected]"
}
}'
CURL
Second Tab