v1

latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KB
Tasks

Update Task Estimate

Set or replace a task's estimate (in seconds). Send a complete estimate object; partial updates are not supported.

put/tasks/{task_id}/estimate

Path parameters

task_idstring required
Example:ev:3000010034

Task ID

Request body

totalnumber required

Total task estimate in seconds

type'overall' | 'users' required
usersobject

Task estimate per user ID

Example request

{
  "total": 7200,
  "type": "overall",
  "users": {
    "1304": 3600,
    "1543": 3600
  }
}

Response

OK

totalnumber required

Total task estimate in seconds

type'overall' | 'users' required
usersobject

Task estimate per user ID

Example response

{
  "total": 7200,
  "type": "overall",
  "users": {
    "1304": 3600,
    "1543": 3600
  }
}