Webex · Schema
CallForwardRulesGet
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique ID for the rule. |
| name | string | Unique name of rule. |
| callFrom | string | Comma-separated list of incoming call numbers that, when matched, will not be forwarded. A Limit of 12 numbers is allowed. Use `Any private Number` in the comma-separated value to indicate rules that |
| callsTo | string | Comma-separated list of the types of numbers being matched for incoming call destination. |
| forwardTo | string | Number to which calls will be forwarded if the rule is of type "Forward To" and the incoming call is matched. |
| enabled | boolean | Reflects if rule is enabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallForwardRulesGet",
"title": "CallForwardRulesGet",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0NBTExfRk9SV0FSRElOR19TRUxFQ1RJVkVfUlVMRS9kR1Z6ZEZKMWJHVTA",
"description": "Unique ID for the rule."
},
"name": {
"type": "string",
"example": "My Rule",
"description": "Unique name of rule."
},
"callFrom": {
"type": "string",
"example": "Any private Number,2025551212",
"description": "Comma-separated list of incoming call numbers that, when matched, will not be forwarded. A Limit of 12 numbers is allowed. Use `Any private Number` in the comma-separated value to indicate rules that match incoming calls from a private number. Use `Any unavailable number` in the comma-separated value to match incoming calls from an unavailable number."
},
"callsTo": {
"type": "string",
"example": "Primary",
"description": "Comma-separated list of the types of numbers being matched for incoming call destination."
},
"forwardTo": {
"type": "string",
"example": "2025557736",
"description": "Number to which calls will be forwarded if the rule is of type \"Forward To\" and the incoming call is matched."
},
"enabled": {
"type": "boolean",
"example": true,
"description": "Reflects if rule is enabled."
}
}
}