Webex · Schema

SelectiveForwardCallSettingPatch

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.
View JSON Schema on GitHub

JSON Schema

webex-selectiveforwardcallsettingpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelectiveForwardCallSettingPatch",
  "title": "SelectiveForwardCallSettingPatch",
  "type": "object",
  "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."
    }
  }
}