Inyo

Banks in a country

For some country destinations we have a list of the available banks.

ParameterTypeRequiredDescription
tenantstringYesThe tenant identifier for your organization.
destinationCountryIso2stringYesISO 3166-1 alpha-2 code of the destination country (e.g., US, BR, MX).

Sample Request

curl --request GET \
  --url {api_endpoint}/organizations/{tenant}/payout/{destinationCountryIso2}/banks \
  --header 'content-type: application/json' \
  --header 'x-agent-api-key: {agentApiKey}' \
  --header 'x-agent-id: {agentId}'
{
  "total": 47,
  "size": 10,
  "page": 0,
  "numberOfPages": 5,
  "items": [
    {
      "code": "007",
      "name": "BANCO BCSC",
      "countryIso2": "CO"
    },
    {
      "code": "1000",
      "name": "BANCO REPÚBLICA",
      "countryIso2": "CO"
    },
    {
      "code": "1001",
      "name": "BANCO DE BOGOTÁ",
      "countryIso2": "CO"
    }
    ...
  ]
}

Documentation

GET /organizations/{tenant}/payout/{destinationCountryIso2}/banks