action sinao_app_accounting_categories_create { label: "Create a category" description: "" provider: sinao method: POST path: "/apps/{appId}/accountcategories/" encoding: json input: { type: "object" properties: { description: { type: "string" } name: { type: "string" } type: { type: "string" } } additionalProperties: false } output: { properties: { description: { type: "string" } id: { type: "integer" } name: { type: "string" } type: { type: "string" } } } }