• Post category:Wiki
  • Запись изменена:03.11.2022

POST api/2.0/community/wiki/file

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

Описание

Загружает выбранные файлы в раздел вики «Файлы».

Параметры

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

sent in body
List of filesFiles for adding using multipart/form-data

collection
Файлы для добавления использует multipart/form-data

collection?
N/A
Пример
POST api/2.0/community/wiki/file
Host: yourportal.r7-office.ru
Content-Type: application/json
Accept: application/json

{
  "files": []
}

Возвращает
Список файлов

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

application/json

{
  "status": 0,
  "response": [
    {
      "name": "File name",
      "updatedBy": {
        "id": "00000000-0000-0000-0000-000000000000",
        "displayName": "Mike Zanyatski",
        "title": "Manager",
        "avatarSmall": "url to small avatar",
        "profileUrl": ""
      },
      "updated": "2022-10-07T10:03:01.7560737Z",
      "location": "4\\46\\File name"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <name>File name</name>
    <updatedBy>
      <id>00000000-0000-0000-0000-000000000000</id>
      <displayName>Mike Zanyatski</displayName>
      <title>Manager</title>
      <avatarSmall>url to small avatar</avatarSmall>
      <profileUrl></profileUrl>
    </updatedBy>
    <updated>2022-10-07T10:03:01.7560737Z</updated>
    <location>4\46\File name</location>
  </response>
</result>