Webex · Schema

ReceptionInfo

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
receptionEnabled boolean Set to `true` to enable the Receptionist Client feature.
monitoredMembers array List of people, workspaces or virtual lines to monitor.
View JSON Schema on GitHub

JSON Schema

webex-receptioninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReceptionInfo",
  "title": "ReceptionInfo",
  "type": "object",
  "required": [
    "receptionEnabled"
  ],
  "properties": {
    "receptionEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Set to `true` to enable the Receptionist Client feature."
    },
    "monitoredMembers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MonitoredMemberObject"
      },
      "description": "List of people, workspaces or virtual lines to monitor."
    }
  }
}