Webex · Schema
ModifyCallForwardingNoAnswer
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | "No Answer" call forwarding is enabled or disabled. |
| destination | string | Destination for "No Answer" call forwarding. If enabled true, destination is required. |
| numberOfRings | number | Number of rings before the call will be forwarded if unanswered. `numberOfRings` must be between 2 and 20, inclusive. |
| systemMaxNumberOfRings | number | Max number of rings before the call will be forwarded if unanswered. |
| destinationVoicemailEnabled | boolean | Enables and disables sending incoming to destination number's voicemail if 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/ModifyCallForwardingNoAnswer",
"title": "ModifyCallForwardingNoAnswer",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"example": true,
"description": "\"No Answer\" call forwarding is enabled or disabled."
},
"destination": {
"type": "string",
"example": "+19075552859",
"description": "Destination for \"No Answer\" call forwarding. If enabled true, destination is required."
},
"numberOfRings": {
"type": "number",
"example": 2,
"description": "Number of rings before the call will be forwarded if unanswered. `numberOfRings` must be between 2 and 20, inclusive."
},
"systemMaxNumberOfRings": {
"type": "number",
"example": 20,
"description": "Max number of rings before the call will be forwarded if unanswered."
},
"destinationVoicemailEnabled": {
"type": "boolean",
"example": true,
"description": "Enables and disables sending incoming to destination number's voicemail if the destination is an internal phone number and that number has the voicemail service enabled."
}
}
}