Account Resolution
Resolve and verify banking information
Last updated
Resolve and verify banking information
POST {{base_url}}/verify-account
Fields with * are required
Content-Type
String
application/json
Authorization*
String
Bearer {{your_secret_key}}
Request Body
account_number*
string
10-digit NUBAN
nibss_code*
string
Bank NIBSS code
See banks endpoint to retrieve the valid NIBSS code for the account you are verifying.
Response
{
"account": {
"success": true,
"data": {
"account_name": "UMAR AKINYEMI CALISTUS",
"bank_name": "ZENITH BANK",
"nibss_code": "000015",
"account_number": "2309283392"
}
},
"message": "Acccount resolved successfully"
}{
"error": "Invalid request"
}Last updated