action billingo_list_bank_account { label: "List all bank account" description: "Returns a list of your bank accounts. The bank accounts are returned sorted by creation date, with the most recent bank account appearing first." provider: billingo method: GET path: "/bank-accounts" encoding: json input: { type: "object" properties: { page: { type: "integer" } per_page: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "A object with a data property that contains an array of up to limit bank accounts. Each entry in the array is a separate bank account object. If no more bank accounts are available, the resulting array will be empty." properties: { current_page: { type: "integer" } data: { type: "array" items: { type: "object" required: ["name", "account_number", "currency"] 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" } } } } last_page: { type: "integer" } next_page_url: { type: "string" } per_page: { type: "integer" } prev_page_url: { type: "string" } total: { type: "integer" } } } }