clickup_time_create
Manually record historical time entries in ClickUp for offline work or backfilling. Specify start time, duration, and optional task details to create fixed time tracking records.
Instructions
Manually record a historical time tracking entry with a fixed start and duration. Use this for backfilling time (e.g. work done offline). For live timing use clickup_time_start/stop instead. Returns the created time entry object including its new id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| billable | No | true = mark as billable (shows with $ in reports); false or omitted = non-billable. | |
| description | No | Free-text description of the work logged. Optional. | |
| duration | Yes | Duration in milliseconds (e.g. 3600000 for one hour). | |
| start | Yes | Entry start time as a Unix timestamp in milliseconds (e.g. 1735689600000 for 2025-01-01 00:00 UTC). | |
| task_id | No | ID of the task to attribute the time to. Obtain from clickup_task_list. Omit for a task-less time entry. | |
| team_id | No | Workspace (team) ID. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. |