Get open tasks stats

GET /data/tasks/open-tasks/stats

Return totals and aggregates by status and task type per project for open projects.

Responses

  • 200 application/json

    A dict by project with results for each task type and status pair

    Hide response attribute Show response attribute object
    • * object Additional properties
      Hide * attributes Show * attributes object
      • total integer
      • done integer
      • estimation integer
      • duration integer
  • 400

    Bad request

GET /data/tasks/open-tasks/stats
curl \
 --request GET 'http://api.example.com/data/tasks/open-tasks/stats' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "additionalProperty1": {
    "total": 42,
    "done": 42,
    "estimation": 42,
    "duration": 42
  },
  "additionalProperty2": {
    "total": 42,
    "done": 42,
    "estimation": 42,
    "duration": 42
  }
}