Webex · Schema
CallForwardingBusyGet
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | "Busy" call forwarding is enabled or disabled. |
| destination | string | Destination for "Busy" call forwarding. |
| destinationVoicemailEnabled | boolean | 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/CallForwardingBusyGet",
"title": "CallForwardingBusyGet",
"type": "object",
"required": [
"enabled",
"destinationVoicemailEnabled"
],
"properties": {
"enabled": {
"type": "boolean",
"description": "\"Busy\" call forwarding is enabled or disabled."
},
"destination": {
"type": "string",
"example": "+19075552859",
"description": "Destination for \"Busy\" call forwarding."
},
"destinationVoicemailEnabled": {
"type": "boolean",
"description": "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."
}
}
}