Webex · Schema

InterceptOutGoingGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
type string All outgoing calls are intercepted. * `INTERCEPT_ALL` - Outgoing calls are intercepted. * `ALLOW_LOCAL_ONLY` - Only non-local calls are intercepted.
transferEnabled boolean If `true`, allows transfer and forwarding for the call type.
destination string Number to which the outbound call be transferred.
View JSON Schema on GitHub

JSON Schema

webex-interceptoutgoingget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InterceptOutGoingGet",
  "title": "InterceptOutGoingGet",
  "type": "object",
  "required": [
    "type",
    "transferEnabled"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "INTERCEPT_ALL",
        "ALLOW_LOCAL_ONLY"
      ],
      "description": "All outgoing calls are intercepted.\n * `INTERCEPT_ALL` - Outgoing calls are intercepted.\n * `ALLOW_LOCAL_ONLY` - Only non-local calls are intercepted.\n"
    },
    "transferEnabled": {
      "type": "boolean",
      "example": true,
      "description": "If `true`, allows transfer and forwarding for the call type."
    },
    "destination": {
      "type": "string",
      "example": "`+12225551212",
      "description": "Number to which the outbound call be transferred."
    }
  }
}