action drchrono_task_categories_read { label: "task_categories_read" description: "Retrieve an existing task category" provider: drchrono method: GET path: "/api/task_categories/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } since: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["name", "practice_group"] properties: { archived: { type: "boolean" } created_at: { type: "string" } id: { type: "integer" } is_global: { type: "string" description: "Indicates that the category is a system wide (pre-defined) category" } name: { type: "string" } practice_group: { type: "integer" } updated_at: { type: "string" } } } }