Webex · Schema

CoHostObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
email string Email address for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API.
displayName string Display name for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API.
View JSON Schema on GitHub

JSON Schema

webex-cohostobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CoHostObject",
  "title": "CoHostObject",
  "type": "object",
  "required": [
    "email",
    "displayName"
  ],
  "properties": {
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API."
    },
    "displayName": {
      "type": "string",
      "example": "John Andersen",
      "description": "Display name for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API."
    }
  }
}