DELETE api/2.0/files/rooms/{id}/logo This function requires authentication

Description

Removes a logo from a room with the ID specified in the request.

Parameters
Name Description Type Example
id
sent in url
Room ID number 1234
Example
DELETE api/2.0/files/rooms/1234/logo
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Room information

Example Response

application/json

{
  "status": 0,
  "response": {
    "ParentId": 1234,
    "FilesCount": 1234,
    "FoldersCount": 1234,
    "New": 1234,
    "Mute": true,
    "Pinned": true,
    "Private": true
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <ParentId>1234</ParentId>
    <FilesCount>1234</FilesCount>
    <FoldersCount>1234</FoldersCount>
    <New>1234</New>
    <Mute>True</Mute>
    <Pinned>True</Pinned>
    <Private>True</Private>
  </response>
</result>