PUT api/2.0/files/file/{fileId}/history This function requires authentication

Description

Changes the version history of a file with the ID specified in the request.

Parameters
Name Description Type Example
fileId
sent in url
File ID number 1234
Version
sent in body
File version number 1234
ContinueVersion
sent in body
Marks as a version or revision Bool value true
Example
PUT api/2.0/files/file/1234/history
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "Version": 1234,
  "ContinueVersion": true
}
Returns

Updated information about file versions

Example Response
{
  "status": 0,
  "response": [
    {
      "FolderId": 1234,
      "Version": 1234,
      "VersionGroup": 1234,
      "ContentLength": "some text",
      "Mute": true,
      "ViewUrl": "some text",
      "WebUrl": "some text",
      "FileExst": "some text",
      "Comment": "some text",
      "ThumbnailUrl": "some text",
      "LockedBy": "some text",
      "DenyDownload": true,
      "DenySharing": true
    }
  ]
}