Resolve Bank Account
Verify a bank account number and retrieve the account holder's name.
Endpoint
POST /v1/banks/account-resolutionAuthentication
Header
Value
Request body
Field
Type
Required
Description
Example request
curl -X POST https://ramp-api.ivorypay.io/api/v1/banks/account-resolution \
-H "x-api-key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"accountNumber": "0123456789",
"bankCode": "058",
"currency": "NGN"
}'const response = await fetch("https://ramp-api.ivorypay.io/api/v1/banks/account-resolution", {
method: "POST",
headers: {
"x-api-key": "your_api_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
accountNumber: "0123456789",
bankCode: "058",
currency: "NGN",
}),
});
const data = await response.json();
console.log(data);Example response
Response fields
Field
Type
Description
Error cases
Error code
Description
Best practices
Last updated