Skip to main content
GET
/
team
/
estimate
/
export
Estimates Report (deprecated)
curl --request GET \
  --url https://api.everhour.com/team/estimate/export \
  --header 'X-Api-Key: <api-key>'
[
  {
    "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"
    }
  }
]

Authorizations

X-Api-Key
string
header
required

Query Parameters

dueFrom
string

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

Example:

"2018-01-01"

dueTo
string

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

Example:

"2018-01-31"

status
string

Task status (e.g. open or completed)

Example:

"open"

Response

OK

time
object
estimate
object
project
object

Will appear only if 'project' passed to fields parameter

task
object

Will appear only if 'task' passed to fields parameter