Name Enquiry
The Name Enquiry API empowers developers to verify and validate account holder details with precision. It enables accurate checks on account names associated with specific bank account numbers, ensuring secure and error-free transactions.
Endpoint: GET - {{baseUrl}}/banking/wallet/name-enquiry
//A code snippet of how to consume the API
var myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("Content-Type", "application/json");
var raw = "{\n \"bank_code\" : 58,\n \"account_no\": 0161444276\n}";
var requestOptions = {
method: 'GET',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://demo.backend.monicredit.com/api/v1/banking/wallet/name-enquiry?bank_code=033&account_no=2086860888", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
GET
{{BaseURL}}/banking/wallet/name/enquiry
Headers
Name
Type
Description
Authorization*
String
{{bearer_token}}
Request Body
Name
Type
Description
bank_code*
String
000
account_no*
String
000000
{
"account_name": "SALAMI MURITALA OLAYIWOLA",
"account_number": "000000",
"bank_code": "13",
"status": 1
}
Last updated