action billingo_get_bank_account { label: "Retrieve a bank account" description: "Retrieves the details of an existing bank account." provider: billingo method: GET path: "/bank-accounts/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } 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" } } } }