GET/projects/api/v3/tasks/{taskId}/time/total.json
Get timelog totals for a specific task.
Request Examples
Example Request
GET
/projects/api/v3/tasks/{taskId}/time/total.jsoncurl --request GET \ --url https://{site_name}.teamwork.com/tags.json
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 OK
TotalsResponse contains information about timelog totals.
- Code
- 400
- Type
- object
- Schema
- Description
- 400 Bad Request
ErrorResponse defines how []Error should be marshaled to JSON.
200 OK
TotalsResponse
{
"subTasks": {
"estimatedMinutes": 0,
"minutes": 0,
"minutesBillable": 0
},
"time-totals": {
"estimatedMinutes": 0,
"estimatedMinutesActive": 0,
"estimatedMinutesCompleted": 0,
"estimatedMinutesFiltered": 0,
"estimatedMinutesWithLoggedTime": 0,
"minutes": 0,
"minutesBillable": 0,
"minutesBilled": 0,
"minutesNonBillable": 0,
"minutesNonBilled": 0
}
}