Webex · Schema

ReceptionPut

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
receptionEnabled boolean `true` if the Receptionist Client feature is enabled.
monitoredMembers array List of members' unique identifiers to monitor.
View JSON Schema on GitHub

JSON Schema

webex-receptionput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReceptionPut",
  "title": "ReceptionPut",
  "type": "object",
  "required": [
    "receptionEnabled"
  ],
  "properties": {
    "receptionEnabled": {
      "type": "boolean",
      "example": true,
      "description": "`true` if the Receptionist Client feature is enabled."
    },
    "monitoredMembers": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82MWU3MDlkNy1hM2IxLTQ2MDctOTBiOC04NmE5MDgxYWFkNmE"
      },
      "description": "List of members' unique identifiers to monitor."
    }
  }
}