clickup_time_list
Retrieve historical time tracking entries from ClickUp, with optional filters by date range or specific task. View manual entries and stopped timers in a compact format.
Instructions
List historical time tracking entries for a workspace, optionally filtered by date range and/or task. Covers both manually-created entries and stopped timers. Returns a compact array of time entry objects (id, user, task, start, duration, billable, description).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | No | Inclusive upper bound as a Unix timestamp in milliseconds. Omit for no upper bound. Note: ClickUp caps the range to ~30 days by default. | |
| start_date | No | Inclusive lower bound as a Unix timestamp in milliseconds (e.g. 1735689600000 for 2025-01-01). Omit for no lower bound. | |
| task_id | No | Return only entries attributed to this task. Obtain from clickup_task_list (field: id). Omit to list entries across all tasks. | |
| team_id | No | Workspace (team) ID. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. |