Webex · Schema

SimultaneousRingPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Simultaneous Ring is enabled or not.
doNotRingIfOnCallEnabled boolean When set to `true`, the configured phone numbers won't ring when on a call.
phoneNumbers array Enter up to 10 phone numbers to ring simultaneously when a workspace phone receives an incoming call.
criteriasEnabled boolean When `true`, enables the selected schedule for simultaneous ring.
View JSON Schema on GitHub

JSON Schema

webex-simultaneousringpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimultaneousRingPatch",
  "title": "SimultaneousRingPatch",
  "type": "object",
  "required": [
    "criteriasEnabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Simultaneous Ring is enabled or not."
    },
    "doNotRingIfOnCallEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When set to `true`, the configured phone numbers won't ring when on a call."
    },
    "phoneNumbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SimultaneousRingNumber"
      },
      "description": "Enter up to 10 phone numbers to ring simultaneously when a workspace phone receives an incoming call."
    },
    "criteriasEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When `true`, enables the selected schedule for simultaneous ring."
    }
  }
}