Webex · Schema

InterceptNumberPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean If `true`, the caller hears this new number when the call is intercepted.
destination string New number the caller hears announced.
View JSON Schema on GitHub

JSON Schema

webex-interceptnumberpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InterceptNumberPatch",
  "title": "InterceptNumberPatch",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "If `true`, the caller hears this new number when the call is intercepted."
    },
    "destination": {
      "type": "string",
      "example": "+12225551212",
      "description": "New number the caller hears announced."
    }
  }
}