Customers’ Address Verification Request

Adhere’s Physical Address verification endpoint provides access to accurate and verified information about your customers’ address living in Lagos.

Request Endpoint

POST {{BASE_URL}}/api/onboarding/nigeria_kyc/physical_address_verification_lagos/

  • Media-Type: application/json

Status Codes

  • 200 OK: Physical Address verification request received successfully
  • 400 Bad Request: Missing or invalid fields in the request

Sample Payload

{    
    "city": "oshodi",
    "lga": "lagos mainland",
    "landmark": "lagos",
    "street": "270 Murtala Muhammed Way, Alagomeji. Yaba",
    "first_name": "John",
    "last_name": "Doe",
    "birth_date": "17/01/1988",
    "phone_number": "08000000000",
    "nin": "10000000001",
    "state": "Lagos"

}

200 OK Response

{
    "status": 'success',
    "data": {
        "identity_check_id": 2,
        "status": "pending",
        "city": "oshodi",
        "lga": "lagos mainland",
        "landmark": "lagos",
        "street": "270 Murtala Muhammed Way, Alagomeji. Yaba",
        "first_name": "John",
        "last_name": "Doe",
        "birth_date": "17/01/1988",
        "phone_number": "08000000000",
        "nin": "10000000001",
        "state": "Lagos"
    },
    "message": "Physical Address Verification request received successfully, You will be notified via email when the verification is completed",
}

Note: The endpoint can be tested using the exact payload defined above, without passing an access token in your headers.