GET api/2.0/files/file/{fileId}/checkconversion This function requires authentication

Description

Checks the conversion status of a file with the ID specified in the request.

Parameters
Name Description Type Example
fileId
sent in url
File ID number 1234
start
sent in url
Specifies if a conversion operation is started or not Bool value true
Example
GET api/2.0/files/file/1234/checkconversion
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "start": true
}
Returns

Conversion result

Example Response
{
  "status": 0,
  "response": [
    {
      "Id": "some text",
      "Progress": 1234,
      "Source": "some text",
      "Error": "some text",
      "Processed": "some text"
    }
  ]
}