Webex · Schema
ModifyCallForwardSelectiveSettingObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | `Busy` call forwarding is enable or disabled. |
| destination | string | Destination for `Busy` call forwarding. |
| ringReminderEnabled | boolean | If `true`, a brief tone will be played on the person's phone when a call has been forwarded. |
| sendToVoicemailEnabled | boolean | Indicates enabled or disabled state of sending incoming calls to voicemail when the destination is an internal phone number and that number has the voicemail service enabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ModifyCallForwardSelectiveSettingObject",
"title": "ModifyCallForwardSelectiveSettingObject",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"example": true,
"description": "`Busy` call forwarding is enable or disabled."
},
"destination": {
"type": "string",
"example": "+19705550006",
"description": "Destination for `Busy` call forwarding."
},
"ringReminderEnabled": {
"type": "boolean",
"description": "If `true`, a brief tone will be played on the person's phone when a call has been forwarded."
},
"sendToVoicemailEnabled": {
"type": "boolean",
"description": "Indicates enabled or disabled state of sending incoming calls to voicemail when the destination is an internal phone number and that number has the voicemail service enabled."
}
}
}