clickup_start_time_entry
Start a running timer to track time on a task without a known end time. Use this to begin live time tracking.
Instructions
Start a new, open-ended running timer for the authenticated user.
Calls POST /team/{team_id}/time_entries/start.
When to Use:
Beginning live time tracking on a task right now, with no known end time yet.
When NOT to Use:
To log time you already know the duration/end for — use
clickup_create_time_entryinstead.If a timer may already be running — check first with
clickup_get_running_time_entry(ClickUp allows only one active timer per user).
Returns:
A confirmation string with the new entry's id. Its duration in the API
response is negative while it runs — that is expected, not an error.
Examples: params = {"team_id": "123", "tid": "abc123", "description": "pairing session"}
Error Handling:
400 typically means a timer is already running for this user; stop it
first with clickup_stop_time_entry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |