action biapi_delete_banks_categories_id_category { label: "Delete the supplied category" description: "" provider: biapi method: DELETE path: "/banks/categories/{id_category}" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_category: { type: "integer" } } required: ["id_category"] additionalProperties: false } output: { type: "object" required: ["id", "name"] properties: { id: { type: "integer" description: "ID of the bank category" } name: { type: "string" description: "Name of the category" } } } }