Webex · Schema
CallInterceptDetails
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| configurationLevel | object | The level from which the configuration is applied. |
| permission | string | The choices that indicate call intercept permissions. * `DISALLOW` - Call intercept is disabled. * `TRANSFER` - Call intercept is transferred to a number. |
| transferNumber | string | The number to which the outgoing permission by type is to be transferred. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallInterceptDetails",
"title": "CallInterceptDetails",
"type": "object",
"required": [
"configurationLevel",
"permission"
],
"properties": {
"configurationLevel": {
"$ref": "#/components/schemas/ConfigurationLevelType",
"description": "The level from which the configuration is applied."
},
"permission": {
"type": "string",
"enum": [
"DISALLOW",
"TRANSFER"
],
"description": "The choices that indicate call intercept permissions.\n * `DISALLOW` - Call intercept is disabled.\n * `TRANSFER` - Call intercept is transferred to a number.\n"
},
"transferNumber": {
"type": "string",
"example": "+14157279300",
"description": "The number to which the outgoing permission by type is to be transferred."
}
}
}