Webex · Schema

OperatingModeCallForwarding

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Call forwarding is enabled, or disabled. `False` if the flag is not set.
destination string The destination for forwarding.
destinationVoicemailEnabled boolean The destination voicemail enabled. `False` if the flag is not set.
View JSON Schema on GitHub

JSON Schema

webex-operatingmodecallforwarding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OperatingModeCallForwarding",
  "title": "OperatingModeCallForwarding",
  "type": "object",
  "required": [
    "enabled",
    "destination",
    "destinationVoicemailEnabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Call forwarding is enabled, or disabled. `False` if the flag is not set."
    },
    "destination": {
      "type": "string",
      "example": "+19705550006",
      "description": "The destination for forwarding."
    },
    "destinationVoicemailEnabled": {
      "type": "boolean",
      "description": "The destination voicemail enabled. `False` if the flag is not set."
    }
  }
}