Webex · Schema

PrivacyGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
aaExtensionDialingEnabled boolean When `true` auto attendant extension dialing is enabled.
aaNamingDialingEnabled boolean When `true` auto attendant dialing by first or last name is enabled.
enablePhoneStatusDirectoryPrivacy boolean When `true` phone status directory privacy is enabled.
enablePhoneStatusPickupBargeInPrivacy boolean When `true` privacy is enforced for call pickup and barge-in. Only members specified by `monitoringAgents` can pickup or barge-in on the call.
monitoringAgents array List of people that are being monitored.
View JSON Schema on GitHub

JSON Schema

webex-privacyget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PrivacyGet",
  "title": "PrivacyGet",
  "type": "object",
  "properties": {
    "aaExtensionDialingEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When `true` auto attendant extension dialing is enabled."
    },
    "aaNamingDialingEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When `true` auto attendant dialing by first or last name is enabled."
    },
    "enablePhoneStatusDirectoryPrivacy": {
      "type": "boolean",
      "example": true,
      "description": "When `true` phone status directory privacy is enabled."
    },
    "enablePhoneStatusPickupBargeInPrivacy": {
      "type": "boolean",
      "example": true,
      "description": "When `true` privacy is enforced for call pickup and barge-in. Only members specified by `monitoringAgents` can pickup or barge-in on the call."
    },
    "monitoringAgents": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MonitoredPersonObject"
      },
      "description": "List of people that are being monitored."
    }
  }
}