Webex · Schema

CallForwardSelectiveCallsFromObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
selection string If `CUSTOM`, use `customNumbers` to specify which incoming caller ID values cause this rule to match. `ANY` means any incoming call matches assuming the rule is in effect based on the associated sched
customNumbers object Custom rules for matching incoming caller ID information. Mandatory if the selection option is set to `CUSTOM`.
View JSON Schema on GitHub

JSON Schema

webex-callforwardselectivecallsfromobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallForwardSelectiveCallsFromObject",
  "title": "CallForwardSelectiveCallsFromObject",
  "type": "object",
  "required": [
    "selection"
  ],
  "properties": {
    "selection": {
      "type": "string",
      "enum": [
        "ANY",
        "CUSTOM"
      ],
      "description": "If `CUSTOM`, use `customNumbers` to specify which incoming caller ID values cause this rule to match. `ANY` means any incoming call matches assuming the rule is in effect based on the associated schedules.\n * `ANY` - Rule matches for calls from any number.\n * `CUSTOM` - Rule matches based on the numbers and options in customNumbers.\n"
    },
    "customNumbers": {
      "$ref": "#/components/schemas/CallForwardSelectiveCallsFromCustomNumbersObject",
      "description": "Custom rules for matching incoming caller ID information. Mandatory if the selection option is set to `CUSTOM`."
    }
  }
}