PUT api/2.0/crm/task/{taskid}/reopen
Reopens a task with the ID specified in the request.
Name |
Description |
Type |
Example |
taskid
sent in url
|
Task ID
|
number
|
1234
|
PUT api/2.0/crm/task/1234/reopen
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": {
"createBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"created": "2022-05-25T16:33:49.3835773Z",
"title": "Send a commercial offer",
"deadLine": "2022-05-25T16:33:49.3835773Z",
"responsible": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"category": {
"imagePath": "path to image",
"title": "Appointment",
"description": "",
"sortOrder": 2,
"id": 30
},
"canEdit": true,
"id": 0
}
}
text/xml
<result>
<status>0</status>
<response>
<createBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createBy>
<created>2022-05-25T16:33:49.3835773Z</created>
<title>Send a commercial offer</title>
<deadLine>2022-05-25T16:33:49.3835773Z</deadLine>
<responsible>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</responsible>
<category>
<imagePath>path to image</imagePath>
<title>Appointment</title>
<description></description>
<sortOrder>2</sortOrder>
<id>30</id>
</category>
<canEdit>true</canEdit>
<id>0</id>
</response>
</result>