PUT TimeTrackingTask/RemoveProjectsFromTask/{id}
Deletes the specified list of project tasks from the Task.
Request Information
URI Parameters
Name | Type | Additional information | Description |
---|---|---|---|
id | integer |
Required |
The Task identifier. |
Body Parameters
List of project tasks to remove from the task.
Collection of Time Tracking Project TaskName | Type | Additional information | Description |
---|---|---|---|
ID | integer |
None. |
|
ProjectID | integer |
None. |
|
TaskID | integer |
None. |
|
BillToClient | bool |
None. |
|
BillingRate | decimal |
None. |
|
BudgetedHours | decimal |
None. |
|
TotalHoursLogged | decimal |
None. |
Request Formats
application/json, text/json
Sample:
[ { "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 } ]
Response Information
Resource Description
None.