Retrieve BVN Details
This returns information about the supplied Bank Verification Number (BVN)
Overview
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.
Expected Response
If the request is successful, it returns a status code of 200 with a response body.
{
"RequestStatus": true,
"ResponseMessage": "Successful.",
"isBvnValid": true,
"bvnDetails": {
"BVN": "22216142222",
"phoneNumber": "08029348596",
"FirstName": "JANE",
"LastName": "DOE",
"OtherNames": "BOND",
"DOB": "20-Apr-90"
}
You can check out API reference to Retrieve BVN Details
Updated almost 2 years ago