Webex · Schema
CallForwardingPlaceSettingPatch
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| always | object | Settings for forwarding all incoming calls to the destination you choose. |
| busy | object | Settings for forwarding all incoming calls to the destination you chose while the phone is in use or the workspace is busy. |
| noAnswer | object | Settings for forwarding which only occurs when you are away or not answering your phone. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallForwardingPlaceSettingPatch",
"title": "CallForwardingPlaceSettingPatch",
"type": "object",
"required": [
"always"
],
"properties": {
"always": {
"$ref": "#/components/schemas/CallForwardingAlwaysGet",
"description": "Settings for forwarding all incoming calls to the destination you choose."
},
"busy": {
"$ref": "#/components/schemas/CallForwardingBusyGet",
"description": "Settings for forwarding all incoming calls to the destination you chose while the phone is in use or the workspace is busy."
},
"noAnswer": {
"$ref": "#/components/schemas/ModifyCallForwardingNoAnswer",
"description": "Settings for forwarding which only occurs when you are away or not answering your phone."
}
}
}