GET/projects/api/v3/tasklists/{tasklistId}/time/total.json
Get timelog totals for a specific task.
Path Params
- Name
tasklistId
- Type
- integer
- required
- Description
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
{
"financialTotals": {
"totalCost": 0,
"totalCostBillable": 0,
"totalCostBilled": 0
},
"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
}
}