v1

latestOpenAPI 3.1.02026-07-24172151607.6 KB
Tasks

Replace task time estimates

Replaces all time estimates for a task with the provided time estimates. Any existing time estimates not included in the request will be removed.

Assignees must be currently assigned to the task, or use assignee: unassigned to set a time estimates for unassigned work.

You can set up to 10 estimates per request.

Note: This endpoint is only available on our Business Plan or above.

put/api/v3/workspaces/{workspace_id}/tasks/{task_id}/time_estimates_by_user

Path parameters

workspace_idstring required

The ID of the Workspace.

task_idstring required

The ID of the task. This parameter supports task IDs and Custom task IDs.

Request body

timeinteger required

The time estimate in milliseconds. Must be a non-negative integer.

Example request

[
  {
    "time": 3600000
  }
]

Response

Example response

{
  "data": {
    "total_time_estimate": 10800000,
    "assignee_estimates": {
      "300001": 3600000,
      "300002": 7200000,
      "unassigned": 0
    }
  }
}