Webex · Schema

SelectiveForwardCallGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean `true` if the Selective Forward feature is enabled.
defaultPhoneNumberToForward string Enter the phone number to forward calls to during this schedule.
ringReminderEnabled boolean When `true`, enables a ring reminder for such calls.
destinationVoicemailEnabled boolean Enables forwarding for all calls to voicemail. This option is only available for internal phone numbers or extensions.
criteria array A list of criteria specifying conditions when selective forward feature is in effect.
View JSON Schema on GitHub

JSON Schema

webex-selectiveforwardcallget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelectiveForwardCallGet",
  "title": "SelectiveForwardCallGet",
  "type": "object",
  "required": [
    "enabled",
    "defaultPhoneNumberToForward",
    "ringReminderEnabled",
    "destinationVoicemailEnabled",
    "criteria"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "`true` if the Selective Forward feature is enabled."
    },
    "defaultPhoneNumberToForward": {
      "type": "string",
      "example": "+1934898988",
      "description": "Enter the phone number to forward calls to during this schedule."
    },
    "ringReminderEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When `true`, enables a ring reminder for such calls."
    },
    "destinationVoicemailEnabled": {
      "type": "boolean",
      "description": "Enables forwarding for all calls to voicemail. This option is only available for internal phone numbers or extensions."
    },
    "criteria": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SelectiveForwardCallCriteria"
      },
      "description": "A list of criteria specifying conditions when selective forward feature is in effect."
    }
  }
}