GET TimeTrackingTask/Get?includeProjectTasks={includeProjectTasks}
Gets a list of Time Tracking Tasks.
Request Information
This method supports OData queries.
URI Parameters
Name | Type | Additional information | Description |
---|---|---|---|
includeProjectTasks | bool |
Default value is False |
Specifies if the Project Tasks will be included |
Body Parameters
None.
Response Information
Resource Description
This collection is wrapped in a paging response object.
Paging response of Time Tracking TaskName | Type | Additional information | Description |
---|---|---|---|
TotalResults | integer |
None. |
|
ReturnedResults | integer |
None. |
|
Results | Collection of Time Tracking Task |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalResults": 1, "ReturnedResults": 2, "Results": [ { "ID": 1, "Name": "sample string 2", "Description": "sample string 3", "BillingRate": 4.0, "BillToClient": true, "DefaultTask": true, "Active": true, "ProjectTasks": [ { "ID": 1, "ProjectID": 2, "TaskID": 3, "BillToClient": true, "BillingRate": 5.0, "BudgetedHours": 6.0, "TotalHoursLogged": 7.0 }, { "ID": 1, "ProjectID": 2, "TaskID": 3, "BillToClient": true, "BillingRate": 5.0, "BudgetedHours": 6.0, "TotalHoursLogged": 7.0 } ] }, { "ID": 1, "Name": "sample string 2", "Description": "sample string 3", "BillingRate": 4.0, "BillToClient": true, "DefaultTask": true, "Active": true, "ProjectTasks": [ { "ID": 1, "ProjectID": 2, "TaskID": 3, "BillToClient": true, "BillingRate": 5.0, "BudgetedHours": 6.0, "TotalHoursLogged": 7.0 }, { "ID": 1, "ProjectID": 2, "TaskID": 3, "BillToClient": true, "BillingRate": 5.0, "BudgetedHours": 6.0, "TotalHoursLogged": 7.0 } ] } ] }