POST api/2.0/files/thirdparty/backup This function requires authentication

Description

Saves a backup of the connected third-party account.

Parameters
Name Description Type Example
Url
sent in body
Connection URL for the sharepoint string some text
Login
sent in body
Login string some text
Password
sent in body
Password string some text
Token
sent in body
Authentication token string some text
CustomerTitle
sent in body
Customer title string some text
ProviderKey
sent in body
Provider key string some text
Remark

List of provider key: DropboxV2, Box, WebDav, Yandex, OneDrive, SharePoint, GoogleDrive, kDrive

Example
POST api/2.0/files/thirdparty/backup
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "Url": "some text",
  "Login": "some text",
  "Password": "some text",
  "Token": "some text",
  "CustomerTitle": "some text",
  "ProviderKey": "some text"
}
Returns

Folder for the third-party account backup

Example Response
{
  "status": 0,
  "response": {
    "ParentId": 1234,
    "FilesCount": 1234,
    "FoldersCount": 1234,
    "IsShareable": true,
    "IsFavorite": true,
    "New": 1234,
    "Mute": true,
    "Pinned": true,
    "RoomType": "5",
    "Private": true,
    "QuotaLimit": 1234,
    "IsCustomQuota": true,
    "UsedSpace": 1234
  }
}