POST api/2.0/files/thirdparty

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

Описание
Сохраняет учетную запись хранения стороннего файла.

Параметры

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

sent in body
URL-адрес подключения для точки общего доступастроковыйтекст
login

sent in body
Логинстроковыйтекст
password

sent in body
Парольстроковыйтекст
token

sent in body
Токен аутентификациистроковыйтекст
isCorporate

sent in body
Корпоративный счет или нетлогическийtrue
customerTitle

sent in body
Название клиентастроковыйтекст
providerKey

sent in body
Ключ провайдерастроковыйтекст
providerId

sent in body
Идентификатор провайдерастроковыйтекст
Примечание
Список ключей провайдеров: Dropbox V2, Box, WebDav, Yandex, OneDrive, SharePoint, Google Drive.
Пример
POST api/2.0/files/thirdparty
Host: yourportal.r7-office.ru
Content-Type: application/json
Accept: application/json

{
  "url": "some text",
  "login": "some text",
  "password": "some text",
  "token": "some text",
  "isCorporate": true,
  "customerTitle": "some text",
  "providerKey": "some text",
  "providerId": "some text"
}

Возвращает
Содержимое папки

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

application/json

{
  "status": 0,
  "response": {
    "parentId": 1944687431,
    "filesCount": 1944687431,
    "foldersCount": 1944687431,
    "id": 1944687431,
    "title": "Some titile",
    "access": 1,
    "shared": false,
    "rootFolderType": 2,
    "updatedBy": {
      "id": "00000000-0000-0000-0000-000000000000",
      "displayName": "Mike Zanyatski",
      "title": "Manager",
      "avatarSmall": "url to small avatar",
      "profileUrl": ""
    },
    "created": "2022-10-09T20:03:09.5509027Z",
    "createdBy": {
      "id": "00000000-0000-0000-0000-000000000000",
      "displayName": "Mike Zanyatski",
      "title": "Manager",
      "avatarSmall": "url to small avatar",
      "profileUrl": ""
    },
    "updated": "2022-10-09T20:03:09.5509027Z"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <parentId>1944687431</parentId>
    <filesCount>1944687431</filesCount>
    <foldersCount>1944687431</foldersCount>
    <id>1944687431</id>
    <title>Some titile</title>
    <access>1</access>
    <shared>false</shared>
    <rootFolderType>2</rootFolderType>
    <updatedBy>
      <id>00000000-0000-0000-0000-000000000000</id>
      <displayName>Mike Zanyatski</displayName>
      <title>Manager</title>
      <avatarSmall>url to small avatar</avatarSmall>
      <profileUrl></profileUrl>
    </updatedBy>
    <created>2022-10-09T20:03:09.5509027Z</created>
    <createdBy>
      <id>00000000-0000-0000-0000-000000000000</id>
      <displayName>Mike Zanyatski</displayName>
      <title>Manager</title>
      <avatarSmall>url to small avatar</avatarSmall>
      <profileUrl></profileUrl>
    </createdBy>
    <updated>2022-10-09T20:03:09.5509027Z</updated>
  </response>
</result>