PUT api/2.0/community/forum/topic/{topicid}/{postid} This function requires authentication

Description

Updates a post in the selected topic changing the post subject or/and content specified in the request.

Parameters
Name Description Type Example
topicid
sent in url
Topic ID number 1234
postid
sent in url
Post ID number 1234
subject
sent in body
New post subject (required) string some text
content
sent in body
New post text string some text
Example
PUT api/2.0/community/forum/topic/1234/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "subject": "some text",
  "content": "some text"
}
Returns

Updated post

Example Response

application/json

{
  "status": 0,
  "response": {
    "Id": 123,
    "Subject": "Sample subject",
    "Text": "Post text",
    "Created": "2020-12-07T13:56:02.3269198Z",
    "Updated": "2020-12-07T13:56:02.3269198Z",
    "CreatedBy": {
      "Id": "00000000-0000-0000-0000-000000000000",
      "DisplayName": "Mike Zanyatski",
      "Title": "Manager",
      "AvatarSmall": "url to small avatar",
      "ProfileUrl": "\\/Products\\/People\\/Profile.aspx?user=administrator"
    },
    "ThreadTitle": "Title",
    "Attachments": {
      "Name": "picture.jpg",
      "ContentType": "image/jpeg",
      "Created": "2020-12-07T13:56:02.3269198Z",
      "Updated": "2020-12-07T13:56:02.3269198Z",
      "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>2020-12-07T13:56:02.3269198Z</Created>
    <Updated>2020-12-07T13:56:02.3269198Z</Updated>
    <CreatedBy>
      <Id>00000000-0000-0000-0000-000000000000</Id>
      <DisplayName>Mike Zanyatski</DisplayName>
      <Title>Manager</Title>
      <AvatarSmall>url to small avatar</AvatarSmall>
      <ProfileUrl>\/Products\/People\/Profile.aspx?user=administrator</ProfileUrl>
    </CreatedBy>
    <ThreadTitle>Title</ThreadTitle>
    <Attachments>
      <Name>picture.jpg</Name>
      <ContentType>image/jpeg</ContentType>
      <Created>2020-12-07T13:56:02.3269198Z</Created>
      <Updated>2020-12-07T13:56:02.3269198Z</Updated>
      <Size>122345</Size>
      <Path>url to file</Path>
    </Attachments>
  </response>
</result>