clickup_get_running_time_entry
Retrieve the currently active time entry for a user. Use to check timer status before starting or stopping a timer.
Instructions
Get the currently running time entry for a user, if any.
Calls GET /team/{team_id}/time_entries/current.
When to Use:
Checking whether a timer is active right now before starting a new one (
clickup_start_time_entry) or stopping one (clickup_stop_time_entry).
When NOT to Use:
To browse historical entries — use
clickup_get_time_entries.
Returns:
A markdown (default) or JSON summary of the running entry, or a plain
"No timer is currently running" message. When present, its duration is
negative — that is how ClickUp signals a still-running timer (the
magnitude is the elapsed time so far).
Examples: params = {"team_id": "123"} params = {"team_id": "123", "assignee": 300528}
Error Handling: 403 means you lack permission to view another user's running timer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |