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 number 1234
Mute
sent in body
Specifies if the room notifications are disabled or not Bool value true
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
{
  "status": 0,
  "response": {}
}