action envoice_post_api_invoice_newcategory { label: "Create an invoice category" provider: envoice method: POST path: "/api/invoice/newcategory" encoding: form input: { type: "object" properties: { Name: { type: "string" description: "Category name" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "object" properties: { Id: { type: "integer" format: "int32" description: "Entity id" } Name: { type: "string" description: "Category name" } } } }