Retrieve BVN Details
This returns information about the supplied Bank Verification Number (BVN).
To get complete BVN details on an account make a post request by passing BVN
and Token
in the request body to the get BVN endpoint. They are both required to get a successful response.
// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/
Account/BVN/GetBVNDetails
POST
https://staging.mybankone.com/thirdpartyapiservice/apiservice/Account/ BVN/GetBVNDetails
Request Body
Name
Type
Description
BVN*
String
Customer's BVN
Token*
String
The authentication key for the request
{
"RequestStatus": true,
"ResponseMessage": "Successful.",
"isBvnValid": true,
"bvnDetails": {
"BVN": "22216142222",
"phoneNumber": "08029348596",
"FirstName": "JANE",
"LastName": "DOE",
"OtherNames": "BOND",
"DOB": "20-Apr-90"
}
}
Last updated