Name Enquiry
Name Enquiry is used to get details of account number supplied.
Overview
To get all details of an account, you make a post request by passing AccountNumber, ,BankCode, and Token in your request body to the name enquire endpoint.
For this request, it is important to note that the payload in the request body are all required for a successful request.
Request Payload
Name | Data Type | Description |
---|---|---|
AccountNumber | String | Customer's account number |
BankCode | String | Commercial bank sortcode that can be gotten from BillsPayment GetComemrcialBank endpoint response |
Token | String | Authentication key for this request |
Expected Response
If the request is successful, it returns a status code of 200 with a response body.
{
"Name": "AKINTOMIWA AKINYEMI",
"BVN": "22233344455",
"KYC": "3",
"IsSuccessful": true,
"SessionID": "",
"ResponseMessage": "Successful",
"DefaultGateWay": "ISW",
"InstitutionCode": null
}
You can check out API reference for Name Enquiry
Updated almost 2 years ago