POST api/2.0/settings/notification/rooms This function requires authentication

Description

Sets a notification status for a room with the ID specified in the request.

Parameters
Name Description Type Example
RoomsId
sent in body
Room ID System.Int32
Mute
sent in body
Specifies if the room notifications are disabled or not System.Boolean
Example
POST api/2.0/settings/notification/rooms
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "RoomsId": 1234,
  "Mute": true
}
Returns

Room notification settings

Example Response

application/json

{
  "status": 0,
  "response": {}
}

text/xml

<result>
  <status>0</status>
  <response />
</result>