action drchrono_task_statuses_read { label: "task_statuses_read" description: "Retrieve an existing task status" provider: drchrono method: GET path: "/api/task_statuses/{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" } name: { type: "string" } practice_group: { type: "integer" } status_category: { type: "string" description: "Can be one of the following `O`(open), `P`(In progress), `H`(On hold), `C`(Complete), default to `O`(Open)" enum: ["O", "P", "H", "C"] } task_category: { type: "integer" description: "ID of `/api/task_categories`" } updated_at: { type: "string" } } } }