Webex · Schema

MonitoringSettingsPut

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enableCallParkNotification boolean Enable or disable call park notification.
monitoredElements array Identifiers of monitored elements whose monitoring settings will be modified. Maximum 50 elements.
View JSON Schema on GitHub

JSON Schema

webex-monitoringsettingsput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonitoringSettingsPut",
  "title": "MonitoringSettingsPut",
  "type": "object",
  "required": [
    "enableCallParkNotification",
    "monitoredElements"
  ],
  "properties": {
    "enableCallParkNotification": {
      "type": "boolean",
      "example": true,
      "description": "Enable or disable call park notification."
    },
    "monitoredElements": {
      "type": "array",
      "maxItems": 50,
      "items": {
        "type": "string",
        "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS85OWNlZjRmYS03YTM5LTQ1ZDItOTNmNi1jNjA5YTRiMjgzODY"
      },
      "description": "Identifiers of monitored elements whose monitoring settings will be modified. Maximum 50 elements."
    }
  }
}