action sinao_app_accounting_categories_get { label: "Get a category" description: "" provider: sinao method: GET path: "/apps/{appId}/accountcategories/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { properties: { description: { type: "string" } id: { type: "integer" } name: { type: "string" } type: { type: "string" } } } }