GET/projects/time/total.json

Time Totals across Projects

Returns time totals grouped by project.


Request Examples

Example Request

GET
/projects/time/total.json
curl --request GET \
     --url https://{site_name}.teamwork.com/stats.json

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "STATUS": "OK",
  "projects": [
    {
      "company": {
        "name": "Marketing Ltd.",
        "id": "1"
      },
      "name": "- 1 column",
      "totalNonBilledMins": "0",
      "totalBillableHours": "0.00",
      "totalBillableMins": "0",
      "totalNonBillableMins": "420",
      "totalMins": "420",
      "totalNonBillableHours": "7.00",
      "totalBilledHours": "0.00",
      "totalHours": "7.00",
      "totalNonBilledHours": "0.00",
      "id": "1",
      "totalBilledTime": "0",
      "totalBilledMins": "0"
    }
  ]
}