Webex · Schema

UpdateMeetingBreakoutSessionsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
hostEmail string Email address for the meeting host. This parameter is only used if the user or application calling the API has the admin-level scopes. If set, the admin may specify the email of a user in a site they
sendEmail boolean Whether or not to send emails to host and invitees. It is an optional field and default value is true.
items array Breakout sessions are smaller groups that are split off from the main meeting or webinar. They allow a subset of participants to collaborate and share ideas over audio and video. Use breakout sessions
View JSON Schema on GitHub

JSON Schema

webex-updatemeetingbreakoutsessionsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateMeetingBreakoutSessionsObject",
  "title": "UpdateMeetingBreakoutSessionsObject",
  "type": "object",
  "properties": {
    "hostEmail": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address for the meeting host. This parameter is only used if the user or application calling the API has the admin-level scopes. If set, the admin may specify the email of a user in a site they manage and the API will return details for a meeting that is hosted by that user."
    },
    "sendEmail": {
      "type": "boolean",
      "example": true,
      "description": "Whether or not to send emails to host and invitees. It is an optional field and default value is true."
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PreMeetingBreakoutSessionWithoutIdObject"
      },
      "description": "Breakout sessions are smaller groups that are split off from the main meeting or webinar. They allow a subset of participants to collaborate and share ideas over audio and video. Use breakout sessions for workshops, classrooms, or for when you need a moment to talk privately with a few participants outside of the main session. Please note that maximum number of breakout sessions in a meeting or webinar is 100. In webinars, if hosts preassign attendees to breakout sessions, the role of `attendee` will be changed to `panelist`. Breakout session is not supported for a meeting with simultaneous interpretation."
    }
  }
}