POST api/2.0/community/forum
Adds a thread to the category with the ID specified in the request.
Name |
Description |
Type |
Example |
categoryId
sent in body
|
Category ID (-1 for new category)
|
number
|
1234
|
categoryName
sent in body
|
Category name
|
string
|
some text
|
threadName
sent in body
|
Thread name
|
string
|
some text
|
threadDescription
sent in body
|
Thread description
|
string
|
some text
|
POST api/2.0/community/forum
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"categoryId": 1234,
"categoryName": "some text",
"threadName": "some text",
"threadDescription": "some text"
}
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": "2022-08-16T16:01:26.7140914Z",
"updated": "2022-08-16T16:01:26.7140914Z",
"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>2022-08-16T16:01:26.7140914Z</created>
<updated>2022-08-16T16:01:26.7140914Z</updated>
<recentTopicId>1234</recentTopicId>
<recentTopicTitle>Sample topic</recentTopicTitle>
</response>
</result>