v1

latestOpenAPI 3.0.02026-08-043111167.0 KB
Bank

Get banks

Get all banks available

get/banks

Query parameters

authorizationstring

Response

Array of BankBase model instances

idinteger
namestring
countryIdinteger
activeboolean
createdAtstring
updatedAtstring

Example response

[
  {
    "id": 1,
    "name": "Banco de Bogotá",
    "countryId": 1,
    "accountValidator": {
      "type": {
        "ahorros": {
          "$id": "bank_ahorros_bancolombia",
          "title": "account_fields",
          "description": "validator fields for account",
          "type": "string",
          "maxLength": 11,
          "minLength": 3,
          "pattern": "^[0-9]+$"
        },
        "corriente": {
          "$id": "bank_corriente_bancolombia",
          "title": "account_fields",
          "description": "validator fields for account",
          "type": "string",
          "maxLength": 11,
          "minLength": 3,
          "pattern": "^[0-9]+$"
        }
      }
    },
    "active": true,
    "createdAt": "2020-10-01T00:00:00.000Z",
    "updatedAt": "2020-10-01T00:00:00.000Z"
  }
]