DELETE api/2.0/project/time/times/remove
Deletes the times from the tasks with the ID specified in the request
Name |
Description |
Type |
Example |
timeids
sent in body
|
IDs of time spents
|
System.Int32[]
|
|
DELETE api/2.0/project/time/times/remove
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"timeids": [
1234
]
}
application/json
{
"status": 0,
"response": [
{
"canEdit": true,
"id": 10,
"date": "2021-01-21T09:11:56.0932590Z",
"hours": 3.5,
"note": "Sample note",
"relatedProject": 123,
"task": null,
"relatedTask": 13456,
"relatedTaskTitle": "Sample task",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"person": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"paymentStatus": 2,
"statusChanged": "2021-01-21T09:11:56.0932590Z",
"canEditPaymentStatus": true,
"createOn": null
}
]
}
text/xml
<result>
<status>0</status>
<response>
<canEdit>true</canEdit>
<id>10</id>
<date>2021-01-21T09:11:56.0932590Z</date>
<hours>3.5</hours>
<note>Sample note</note>
<relatedProject>123</relatedProject>
<task />
<relatedTask>13456</relatedTask>
<relatedTaskTitle>Sample task</relatedTaskTitle>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<person>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</person>
<paymentStatus>2</paymentStatus>
<statusChanged>2021-01-21T09:11:56.0932590Z</statusChanged>
<canEditPaymentStatus>true</canEditPaymentStatus>
<createOn />
</response>
</result>