Cisco Webex · Schema

CreateRoomRequest

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
title string A user-friendly name for the room.
teamId string The team ID to associate the room with.
classificationId string The classification ID for the room.
isLocked boolean Whether to enable moderation.
isPublic boolean Whether the room is discoverable.
description string The description of the room.
isAnnouncementOnly boolean Whether only moderators can post.
View JSON Schema on GitHub

JSON Schema

cisco-webex-createroomrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRoomRequest",
  "title": "CreateRoomRequest",
  "type": "object",
  "required": [
    "title"
  ],
  "properties": {
    "title": {
      "type": "string",
      "description": "A user-friendly name for the room."
    },
    "teamId": {
      "type": "string",
      "description": "The team ID to associate the room with."
    },
    "classificationId": {
      "type": "string",
      "description": "The classification ID for the room."
    },
    "isLocked": {
      "type": "boolean",
      "description": "Whether to enable moderation."
    },
    "isPublic": {
      "type": "boolean",
      "description": "Whether the room is discoverable."
    },
    "description": {
      "type": "string",
      "description": "The description of the room."
    },
    "isAnnouncementOnly": {
      "type": "boolean",
      "description": "Whether only moderators can post."
    }
  }
}