Webex · Schema

AdmitParticipant

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
participantId string The ID that identifies the meeting participant.
breakoutSessionId string The breakout session ID that identifies which breakout session to admit the participant into. Admit into the main session if the value is empty.
View JSON Schema on GitHub

JSON Schema

webex-admitparticipant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdmitParticipant",
  "title": "AdmitParticipant",
  "type": "object",
  "properties": {
    "participantId": {
      "type": "string",
      "example": "560d7b784f5143e3be2fc3064a5c4999_I_204252993233618782_23e16d67-17f3-3ef1-b830-f33d17c0232e",
      "description": "The ID that identifies the meeting participant."
    },
    "breakoutSessionId": {
      "type": "string",
      "example": "23e16d67-17f3-3ef1-b830-f33d17c0232e",
      "description": "The breakout session ID that identifies which breakout session to admit the participant into. Admit into the main session if the value is empty."
    }
  }
}