Resolve Bank Account

Resolve a bank account number to enquire the account name

POST {{ BASE_URL }}/v1/corporate/resolve

Body Parameters

Property
Data Type
Description
Example
Required

bankCode

string

The sort code of the bank. Get bank sort code from the List Banks endpointarrow-up-right

"4061"

Yes

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)
})

Last updated