• Post category:Форумы
  • Запись изменена:28.10.2022

PUT api/2.0/community/forum/topic/{topicid}/{postid}

Для этой функции требуется аутентификация. 

Description

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

Параметры
НазваниеОписаниеТипПример
topicid

sent in url
Идентификатор темыномер1234
postid

sent in url
Идентификатор сообщенияномер1234
subject

sent in body
Тема нового поста (требуется)строковыйтекст
content

sent in body
Новый текст постастроковыйтекст
Пример
PUT api/2.0/community/forum/topic/1234/1234
Host: yourportal.r7-office.ru
Content-Type: application/json
Accept: application/json

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

Возвращает
Обновленный пост

Пример ответа

application/json

{
  "status": 0,
  "response": {
    "id": 123,
    "subject": "Sample subject",
    "text": "Post text",
    "created": "2022-10-06T05:03:04.2783492Z",
    "updated": "2022-10-06T05:03:04.2783492Z",
    "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": "2022-10-06T05:03:04.2783492Z",
        "updated": "2022-10-06T05:03:04.2783492Z",
        "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>2022-10-06T05:03:04.2783492Z</created>
    <updated>2022-10-06T05:03:04.2783492Z</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>2022-10-06T05:03:04.2783492Z</created>
      <updated>2022-10-06T05:03:04.2783492Z</updated>
      <size>122345</size>
      <path>url to file</path>
    </attachments>
  </response>
</result>