v1

latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KB
Reports

Estimates Report (deprecated)

Legacy export of team estimates, returned as JSON. Requires admin access. Kept for backward compatibility; new integrations should use the dashboard reports.

get/team/estimate/export

Query parameters

dueFromstring
Example:2018-01-01

Task due date from you what to fetch estimates (format YYYY-MM-DD)

dueTostring
Example:2018-01-31

Task due date to you what to fetch estimates (format YYYY-MM-DD)

statusstring
Example:open

Task status (e.g. open or completed)

Response

OK

Example response

[
  {
    "time": {
      "total": 7200,
      "users": {
        "1304": 3600,
        "1543": 3600
      }
    },
    "estimate": {
      "total": 7200,
      "type": "overall",
      "users": {
        "1304": 3600,
        "1543": 3600
      }
    },
    "project": {
      "id": "ev:9876543210",
      "name": "Project Name",
      "workspace": "Project Workspace Name"
    },
    "task": {
      "id": "ev:1234567890",
      "name": "Task Name",
      "status": "open",
      "type": "task",
      "iteration": "Iteration/column/section name",
      "number": 123,
      "dueAt": "2018-01-20"
    }
  }
]