clickup_get_time_entry
Retrieve details for a specific time entry using its ID. Get current duration, task info, and location names.
Instructions
Fetch one time entry by id.
Calls GET /team/{team_id}/time_entries/{time_entry_id}.
When to Use:
You already have a
time_entry_id(fromclickup_get_time_entries, or a create/start response) and want its current full detail.
When NOT to Use:
To search/list entries — use
clickup_get_time_entries.To see prior edits to this entry — use
clickup_get_time_entry_history.To check the currently-running timer without an id — use
clickup_get_running_time_entry.
Returns:
A markdown (default) or JSON summary of the entry. A negative
duration means the timer is still running for that user.
Examples: params = {"team_id": "123", "time_entry_id": "1963465985517105840", "include_location_names": True}
Error Handling: 404 means the time_entry_id doesn't exist, or exists under a different team_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |