---
title: "Stop Timer"
method: DELETE
path: "/timers/current"
tags: ["Timers"]
---

# Stop Timer

`DELETE /timers/current`

Stop the authenticated user's currently running timer.

The accumulated duration is committed to a time record on the timer's task for the current date and returned in the response.

## Response `200`

OK

- object — The stopped timer plus the time record it saved.
  - `status` string
  - `taskTime` TimeRecord
    - `id` number, required — Time record ID
    - `time` number, required — Time recorded in seconds
    - `user` number, required — User ID
    - `date` string, required — Date
    - `task` Task
      - `id` string, required
      - `name` string, required
      - `projects` string[], required — List of projects ID
      - `section` number, nullable — Section ID
      - `labels` string[]
      - `position` number
      - `description` string, nullable
      - `dueAt` string, nullable — Format: Y-m-d H:i:s
      - `status` 'open' | 'closed'
      - `time` TaskTime
        - `total` number, required — Total task time in seconds
        - `users` object, required — Task time per user ID
      - `estimate` TaskEstimate
        - `total` number, required — Total task estimate in seconds
        - `type` 'overall' | 'users', required
        - `users` object — Task estimate per user ID
      - `attributes` object — Custom attributes from integration
      - `metrics` object — Custom metrics from integration
      - `unbillable` boolean
    - `isLocked` boolean
    - `isInvoiced` boolean
    - `comment` string
  - `timecard` object, nullable

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/everhour/apis/everhour-api.md) · [All operations](https://skmtc.net/everhour/apis/everhour-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/everhour/everhour-api/revisions/fc6136e33352/schema)
