action codat_get_create_bank_account_model { label: "List push options for bank account bank transactions" description: "Gets the options of pushing bank account transactions." provider: codat method: GET path: "/companies/{companyId}/connections/{connectionId}/options/bankAccounts/{accountId}/bankTransactions" encoding: json input: { type: "object" properties: { accountId: { type: "string" format: "uuid" } companyId: { type: "string" format: "uuid" description: "Unique identifier for your SMB in Codat." } connectionId: { type: "string" format: "uuid" description: "Unique identifier for a company's data connection." } } required: ["accountId", "companyId", "connectionId"] additionalProperties: false } output: { type: "object" } }