action billingo_delete_bank_account { label: "Delete a bank account" description: "Delete an existing bank account." provider: billingo method: DELETE path: "/bank-accounts/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }