Resolve a bank account (name enquiry)
curl --request POST \
--url https://engine-api.shiga.io/v1/banks/resolve \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"account_number": "<string>",
"bank_code": "<string>"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({account_number: '<string>', bank_code: '<string>'})
};
fetch('https://engine-api.shiga.io/v1/banks/resolve', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({account_number: '<string>', bank_code: '<string>'})
};
fetch('https://engine-api.shiga.io/v1/banks/resolve', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://engine-api.shiga.io/v1/banks/resolve")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"account_number\": \"<string>\",\n \"bank_code\": \"<string>\"\n}")
.asString();{
"account_name": "<string>",
"account_number": "<string>",
"bank_code": "<string>",
"bank_name": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}Banks
Resolve a bank account (name enquiry)
POST
/
v1
/
banks
/
resolve
Resolve a bank account (name enquiry)
curl --request POST \
--url https://engine-api.shiga.io/v1/banks/resolve \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"account_number": "<string>",
"bank_code": "<string>"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({account_number: '<string>', bank_code: '<string>'})
};
fetch('https://engine-api.shiga.io/v1/banks/resolve', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({account_number: '<string>', bank_code: '<string>'})
};
fetch('https://engine-api.shiga.io/v1/banks/resolve', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://engine-api.shiga.io/v1/banks/resolve")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"account_number\": \"<string>\",\n \"bank_code\": \"<string>\"\n}")
.asString();{
"account_name": "<string>",
"account_number": "<string>",
"bank_code": "<string>",
"bank_name": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}⌘I