action drchrono_task_statuses_list { label: "task_statuses_list" description: "Retrieve or search task statuses" provider: drchrono method: GET path: "/api/task_statuses" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } page_size: { type: "integer" description: "Number of results to return per page." } since: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }