PUT api/2.0/files/rooms/{id}/unarchive This function requires authentication

Description

Moves a room with the ID specified in the request from the "Archive" section to the "Rooms" section.

Parameters
Name Description Type Example
id
sent in url
Room ID number 1234
DeleteAfter
sent in body
Specifies whether to archive a room after the editing session is finished or not Bool value true
Example
PUT api/2.0/files/rooms/1234/unarchive
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "DeleteAfter": true
}
Returns

File operation

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