Webex · Schema
CallForwardSelectiveForwardToObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| phoneNumber | string | Phone number used if selection is `FORWARD_TO_SPECIFIED_NUMBER`. |
| selection | string | Controls what happens when the rule matches. * `FORWARD_TO_DEFAULT_NUMBER` - When the rule matches, forward to the destination for the auto attendant. * `FORWARD_TO_SPECIFIED_NUMBER` - When the rule m |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallForwardSelectiveForwardToObject",
"title": "CallForwardSelectiveForwardToObject",
"type": "object",
"required": [
"selection"
],
"properties": {
"phoneNumber": {
"type": "string",
"example": "+19705550028",
"description": "Phone number used if selection is `FORWARD_TO_SPECIFIED_NUMBER`."
},
"selection": {
"type": "string",
"enum": [
"FORWARD_TO_DEFAULT_NUMBER",
"FORWARD_TO_SPECIFIED_NUMBER",
"DO_NOT_FORWARD"
],
"description": "Controls what happens when the rule matches.\n * `FORWARD_TO_DEFAULT_NUMBER` - When the rule matches, forward to the destination for the auto attendant.\n * `FORWARD_TO_SPECIFIED_NUMBER` - When the rule matches, forward to the destination for this rule.\n * `DO_NOT_FORWARD` - When the rule matches, do not forward to another number.\n"
}
}
}