PUT TimeTrackingProject/RemoveProjectStaff/{id}
Deletes an array of Project Staff from a Project
Request Information
URI Parameters
| Name | Type | Additional information | Description |
|---|---|---|---|
| id | integer |
Required |
The project ID |
Body Parameters
The array of project Satff to be removed
Collection of Time Tracking Project Staff| Name | Type | Additional information | Description |
|---|---|---|---|
| ProjectID | integer |
None. |
|
| TimeTrackingUserId | integer |
None. |
|
| BillingRate | decimal |
None. |
|
| CostPerHour | decimal |
None. |
|
| UserType | integer |
Read Only / System Generated |
Request Formats
application/json, text/json
Sample:
[
{
"ProjectID": 1,
"TimeTrackingUserId": 2,
"BillingRate": 3.0,
"CostPerHour": 4.0,
"UserType": 5
},
{
"ProjectID": 1,
"TimeTrackingUserId": 2,
"BillingRate": 3.0,
"CostPerHour": 4.0,
"UserType": 5
}
]
Response Information
Resource Description
None.