NUBAN (Regular)
Verify a user's account number for all banks in Nigeria.
This Endpoint will return the Name Information of the account holder. To conduct a live test
{{baseUrl}}/v1/ng/identities/nuban
Request Body
Parameters | Type | Description |
---|---|---|
firstname (REQUIRED) | string | First Name |
lastname (REQUIRED) | string | Last Name |
accountNumber (REQUIRED) | string | Account Number |
bankCode (REQUIRED) | string | Bank Code |
dob (OPTIONAL) | string | Date Of Birth (YYYY-MM-DD) |
phone (OPTIONAL) | string | Phone Number |
Response Sample
{
"id": 1613,
"applicant": {
"firstname": "Bunch",
"lastname": "Dillon",
"accountNumber": "1001111111",
"bankCode": "044"
},
"summary": {
"nuban_check": {
"status": "EXACT_MATCH",
"fieldMatches": {
"firstname": true,
"lastname": true
}
}
},
"status": {
"state": "complete",
"status": "verified"
},
"nuban": {
"firstname":"Bunch",
"lastname": "Dillon",
"middlename": "MAKU",
"accountName": "Bunch Dillon",
"accountNumber": "1001111111*",
"dob": "1922-06-10",
"accountCurrency": "560",
"mobileNumber": "08100000000*",
"bvn": "1001111111"
}
}
Updated about 2 years ago