v1
latestOpenAPI 3.1.02026-07-24172151607.6 KBTasks
Update task time estimates by user
Replace the time estimates on a task for specified assignees.
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.
patch/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
Example request
[
{
"time": 3600000
}
]Response
Example response
{
"data": {
"total_time_estimate": 14400000,
"updated_estimates": {
"300001": 5400000,
"300002": 9000000
}
}
}