Banks 🏦

This explains how the get bank API works and how to get all information.
get
https://beta-api.ourpass.co/business/get-banks-api
Get all Banks
cURL
Node.js
curl 'https://beta-api.ourpass.cobusiness/get-banks-api?api_key=pass_sec_test_ewxaVQBbr5JTt6P2tpIUUAZGdpqzRckV' \
-H 'Content-Type: application
/x-www-form-urlencoded'
var axios = require('axios');
var config = {
method: 'get',
url: 'https://beta-api.ourpass.cobusiness/get-banks-api?api_key=pass_sec_test_ewxaVQBbr5JTt6P2tpIUUAZGdpqzRckV',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});