PUT api/2.0/files/fileops/terminate/{id}

Description

Finishes an operation with the ID specified in the request or all the active operations.

Parameters
Name Description Type Example
id
sent in url
Operation ID string some text
Example
PUT api/2.0/files/fileops/terminate/%22some+text%22
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of file operations

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