DELETE api/2.0/community/forum/thread/{threadid}
Deletes a selected thread
Name |
Description |
Type |
Example |
threadid
sent in url
|
Thread ID
|
number
|
1234
|
DELETE api/2.0/community/forum/thread/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
This method doesn't return any data.
application/json
{
"status": 0,
"response": {
"id": 10,
"title": "The Thread",
"updatedBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"description": "Sample thread",
"created": "2021-04-20T19:12:35.5886847Z",
"updated": "2021-04-20T19:12:35.5886847Z",
"recentTopicId": 1234,
"recentTopicTitle": "Sample topic"
}
}
text/xml
<result>
<status>0</status>
<response>
<id>10</id>
<title>The Thread</title>
<updatedBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</updatedBy>
<description>Sample thread</description>
<created>2021-04-20T19:12:35.5886847Z</created>
<updated>2021-04-20T19:12:35.5886847Z</updated>
<recentTopicId>1234</recentTopicId>
<recentTopicTitle>Sample topic</recentTopicTitle>
</response>
</result>