Update a time Entry

Update the details of a time entry.

SecurityAuthorization Token
Request
path Parameters
team_id
required
number <double>

Team ID (Workspace)

timer_id
required
number <double>
query Parameters
custom_task_ids
boolean

If you want to reference a task by it's custom task id, this value must be true.

team_id
number <double>

Only used when the parameter is set to custom_task_ids=true

For example: custom_task_ids=true&team_id=123

Request Body schema: application/json
required

Accessible tag actions are ["replace", "add", "remove"]

description
string
required
Array of objects (Tags6)

Users on the Business Plan and above can include a time tracking label.

tag_action
string
start
integer <int64>

When providing start, you must also provide end.

end
integer <int64>

When providing end, you must also provide start.

tid
string
billable
boolean
duration
integer <int32>
Responses
200
put/v2/team/{team_id}/time_entries/{timer_id}
Request samples
application/json
{
  • "description": "",
  • "tags": [
    ],
  • "tag_action": "add",
  • "start": 1595289395842,
  • "end": 1595289495842,
  • "tid": "task_id",
  • "billable": true,
  • "duration": 100000
}
Response samples
application/json
{ }