Resolve Bank Account
Resolve a bank account number to enquire the account name
POST {{ BASE_URL }}/v1/corporate/resolveBody Parameters
Property
Data Type
Description
Example
Required
accountNo
string
The account number to resolve.
"0252872742"
Yes
import Axios from 'axios';
// set the api url
const API_URL = `${BASE_URL}/v1/corporate/resolve`;
// define request body
const data = {
bankCode: "058",
accountNo: "0252872742"
}
// make request using axios
Axios({
method: "POST",
url: `${API_URL}`,
headers: {
lg: 'en',
ch: 'web'
Authorization: `Bearer ${API_KEY}`,
'Content-Type': 'application/json',
},
data: data
}).then((resp) => {
console.log(resp)
}).catch((err) => {
console.log(err)
}){
"error": false,
"errors": [],
"data": {
"accountNo": "0252872742",
"accountName": "AGBELEYE OLUWATOBI EMMANUEL",
"bankCode": "058",
"bankName": "guaranty trust bank"
},
"message": "successful",
"status": 200
}Last updated