action biapi_post_banks_categories { label: "Create bank categories" description: "It requires the name of the category to be created

" provider: biapi method: POST path: "/banks/categories" encoding: json input: { type: "object" properties: { expand: { type: "string" } } 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" } } } }