action drchrono_task_categories_list { label: "task_categories_list" description: "Retrieve or search task categories" provider: drchrono method: GET path: "/api/task_categories" 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" } 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }