Webex · Schema

UserMonitoringPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enableCallParkNotification boolean Call park notification is enabled or disabled.
monitoredElements array Array of ID strings of monitored elements. Maximum 50 elements.
View JSON Schema on GitHub

JSON Schema

webex-usermonitoringpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserMonitoringPatch",
  "title": "UserMonitoringPatch",
  "type": "object",
  "properties": {
    "enableCallParkNotification": {
      "type": "boolean",
      "example": true,
      "description": "Call park notification is enabled or disabled."
    },
    "monitoredElements": {
      "type": "array",
      "maxItems": 50,
      "items": {
        "type": "string"
      },
      "description": "Array of ID strings of monitored elements. Maximum 50 elements."
    }
  }
}