GET api/2.0/files/file/{fileId}/edit/history

Description

Returns 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
doc
sent in url
Shared token string some text
Example
GET api/2.0/files/file/1234/edit/history
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "doc": "some text"
}
Returns

Version history data

Example Response
{
  "status": 0,
  "response": [
    {
      "ID": 1234,
      "Key": "some text",
      "Version": 1234,
      "VersionGroup": 1234,
      "Created": "2008-04-10T06-30-00.000Z",
      "ChangesHistory": "some text",
      "ServerVersion": "some text"
    }
  ]
}