Get Started
API backend
API system
More information

GET api/2.0/files/fileops This function requires authentication

Description

Returns a list of all the active operations.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/files/fileops
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of file operations

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": "some text",
      "Progress": 1234,
      "Error": "some text",
      "Processed": "some text",
      "Finished": true,
      "Url": "some text"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>some text</Id>
    <Progress>1234</Progress>
    <Error>some text</Error>
    <Processed>some text</Processed>
    <Finished>True</Finished>
    <Url>some text</Url>
  </response>
</result>