DELETE api/2.0/community/forum/post/{postid}
Name |
Description |
Type |
Example |
postid
sent in url
|
Post ID
|
number
|
1234
|
DELETE api/2.0/community/forum/post/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": {
"id": 123,
"subject": "Sample subject",
"text": "Post text",
"created": "2021-01-21T09:11:56.0052505Z",
"updated": "2021-01-21T09:11:56.0052505Z",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"threadTitle": null,
"attachments": [
{
"name": "picture.jpg",
"contentType": "image\/jpeg",
"created": "2021-01-21T09:11:56.0052505Z",
"updated": "2021-01-21T09:11:56.0052505Z",
"size": 122345,
"path": "url to file"
}
]
}
}
text/xml
<result>
<status>0</status>
<response>
<id>123</id>
<subject>Sample subject</subject>
<text>Post text</text>
<created>2021-01-21T09:11:56.0052505Z</created>
<updated>2021-01-21T09:11:56.0052505Z</updated>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<threadTitle />
<attachments>
<name>picture.jpg</name>
<contentType>image/jpeg</contentType>
<created>2021-01-21T09:11:56.0052505Z</created>
<updated>2021-01-21T09:11:56.0052505Z</updated>
<size>122345</size>
<path>url to file</path>
</attachments>
</response>
</result>