v1

latestOpenAPI 3.1.02026-07-24172151607.6 KB
Time Tracking

Get running time entry

View a time entry that's currently tracking time for the authenticated user.

Note: A time entry that has a negative duration means that timer is currently running for that user.

get/v2/team/{team_id}/time_entries/current

Path parameters

team_idnumber required
Example:123

Workspace ID

Query parameters

assigneenumber

user id

Headers

Content-Type'application/json' required
Example:application/json

Response

Example response

{
  "data": {
    "id": "timer_id",
    "task": {
      "id": "task_id",
      "name": "task_name",
      "status": {
        "status": "to do",
        "color": "#d3d3d3",
        "type": "open",
        "orderindex": 0
      }
    },
    "wid": "workspace_id",
    "user": {
      "id": 300528,
      "username": "first_name last_name",
      "email": "test@gmail.com",
      "color": "#08c7e0",
      "initials": "JK",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
    },
    "billable": false,
    "start": "1595293042560",
    "duration": -25655,
    "description": "",
    "tags": [],
    "at": "1595293042560"
  }
}