Stop a Time Entry
documentedStop the currently running timer for the authenticated user in the Workspace.
POST /v2/team/{team_id}/time_entries/stopTime Trackingno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.clickup.com/api/v2/team/{{$team_id}}/time_entries/stop" \
-X POST \
-H 'Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{"start": {{$start}}, "end": {{$end}}, "tid": "{{$task_id}}", "description": "{{$description}}", "tags": {{$tags}}, "duration": {{$duration}} }'