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

DELETE api/2.0/community/forum/post/{postid}

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

Описание
Удаляет пост с идентификатором, указанным в запросе.

Параметры

НазваниеОписаниеТипПример
postid

sent in url
Идентификатор постаномер1234
Пример
DELETE api/2.0/community/forum/post/1234
Host: yourportal.r7-office.ru
Content-Type: application/json
Accept: application/json

Возвращает
Пост

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

application/json

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