action billingo_create_bank_account { label: "Create a bank account" description: "Create a new bank account. Returns a bank account object if the create is succeded." provider: billingo method: POST path: "/bank-accounts" encoding: json input: { type: "object" required: ["account_number", "currency", "name"] properties: { account_number: { type: "string" } account_number_iban: { type: "string" } currency: { type: "string" enum: ["AUD", "BGN", "BRL", "CAD", "CHF", "CNY", "CZK", "DKK", "EUR", "GBP", "HKD", "HRK", "HUF", "IDR", "ILS", "INR", "ISK", "JPY", "KRW", "LTL", "LVL", "MXN", "MYR", "NOK", "NZD", "PHP", "PLN", "RON", "RSD", "RUB", "SEK", "SGD", "THB", "TRY", "UAH", "USD", "ZAR"] } id: { type: "integer" } name: { type: "string" } need_qr: { type: "boolean" } swift: { type: "string" } } } output: { type: "object" required: ["account_number", "currency", "name"] properties: { account_number: { type: "string" } account_number_iban: { type: "string" } currency: { type: "string" enum: ["AUD", "BGN", "BRL", "CAD", "CHF", "CNY", "CZK", "DKK", "EUR", "GBP", "HKD", "HRK", "HUF", "IDR", "ILS", "INR", "ISK", "JPY", "KRW", "LTL", "LVL", "MXN", "MYR", "NOK", "NZD", "PHP", "PLN", "RON", "RSD", "RUB", "SEK", "SGD", "THB", "TRY", "UAH", "USD", "ZAR"] } id: { type: "integer" } name: { type: "string" } need_qr: { type: "boolean" } swift: { type: "string" } } } }