PUT api/2.0/files/fileops/markasread This function requires authentication

Description

Marks the files and folders with the IDs specified in the request as read.

Parameters
Name Description Type Example
FolderIds
sent in body
List of folder IDs Collection of System.Text.Json.JsonElements
collection
FileIds
sent in body
List of file IDs Collection of System.Text.Json.JsonElements
collection
Example
PUT api/2.0/files/fileops/markasread
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"
    }
  ]
}