Webex · Schema
CallForwardSelectiveCallsToNumbersObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| phoneNumber | string | AutoCalls To phone number. Either phone number or extension should be present as mandatory. |
| extension | string | Calls To extension. Either `phoneNumber` or `extension` is mandatory. |
| type | string | Calls to type options. * `PRIMARY` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is a primary number or extension. * `ALTERNATE` - Indicates tha |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallForwardSelectiveCallsToNumbersObject",
"title": "CallForwardSelectiveCallsToNumbersObject",
"type": "object",
"required": [
"type"
],
"properties": {
"phoneNumber": {
"type": "string",
"example": "+19705550028",
"description": "AutoCalls To phone number. Either phone number or extension should be present as mandatory."
},
"extension": {
"type": "string",
"example": "1001",
"description": "Calls To extension. Either `phoneNumber` or `extension` is mandatory."
},
"type": {
"type": "string",
"enum": [
"PRIMARY",
"ALTERNATE"
],
"description": "Calls to type options.\n * `PRIMARY` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is a primary number or extension.\n * `ALTERNATE` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is an alternate number or extension.\n"
}
}
}