action codat_list_bank_accounts { label: "List bank accounts" description: "Gets the list of bank accounts for a given connection" provider: codat method: GET path: "/companies/{companyId}/connections/{connectionId}/data/bankAccounts" encoding: json input: { type: "object" properties: { orderBy: { type: "string" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } query: { type: "string" } } required: ["page"] additionalProperties: false } output: { type: "object" } }