Webex · Schema
ModifyCallForwardAlwaysSettingObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | `Always` call forwarding is enabled or disabled. |
| destination | string | Destination for `Always` call forwarding. Required if field `enabled` is set tu true. |
| 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/ModifyCallForwardAlwaysSettingObject",
"title": "ModifyCallForwardAlwaysSettingObject",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"example": true,
"description": "`Always` call forwarding is enabled or disabled."
},
"destination": {
"type": "string",
"example": "+19705550006",
"description": "Destination for `Always` call forwarding. Required if field `enabled` is set tu true."
},
"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."
}
}
}