get_time_tracked
Retrieve tracked time for tasks within a specified date range using user ID. Supports time management and project analytics via ClickUp's task management API.
Instructions
Get time tracked for tasks
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| end_date | No | End date (ISO 8601) | |
| start_date | No | Start date (ISO 8601) | |
| user_id | No | User ID | 
Input Schema (JSON Schema)
{
  "properties": {
    "end_date": {
      "description": "End date (ISO 8601)",
      "type": "string"
    },
    "start_date": {
      "description": "Start date (ISO 8601)",
      "type": "string"
    },
    "user_id": {
      "description": "User ID",
      "type": "integer"
    }
  },
  "type": "object"
}