action codat_list_bank_transactions { label: "List all bank transactions" description: "Gets the latest bank transactions for given account ID and company. Doesn't require connection ID." provider: codat method: GET path: "/companies/{companyId}/data/bankAccounts/{accountId}/transactions" 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" } }