Room Sessions

Mute participants in room session.

Mutes the selected participants in the specified room session. Apply the action to a list of participant IDs or to all, with optional participant IDs excluded from the action.

post/room_sessions/{room_session_id}/actions/mute

Path parameters

room_session_idstring uuid required
Example:0ccc7b54-4df3-4bca-a65a-3da1ecc777f0

The unique identifier of a room session.

Request body

excludestring[]

List of participant id to exclude from the action.

Example request

{
  "exclude": [
    "7b61621f-62e0-4aad-ab11-9fd19e272e73"
  ],
  "participants": "all"
}

Response

Success Action Response

Example response

{
  "data": {
    "result": "ok"
  }
}