Webex · Schema

ModifyComplianceAnnouncementObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
inboundPSTNCallsEnabled boolean Flag to indicate whether the Call Recording START/STOP announcement is played to an inbound caller.
useOrgSettingsEnabled boolean Flag to indicate whether to use the customer level compliance announcement default settings.
outboundPSTNCallsEnabled boolean Flag to indicate whether the Call Recording START/STOP announcement is played to an outbound caller.
outboundPSTNCallsDelayEnabled boolean Flag to indicate whether compliance announcement is played after a specified delay in seconds.
delayInSeconds number Number of seconds to wait before playing the compliance announcement.
View JSON Schema on GitHub

JSON Schema

webex-modifycomplianceannouncementobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyComplianceAnnouncementObject",
  "title": "ModifyComplianceAnnouncementObject",
  "type": "object",
  "properties": {
    "inboundPSTNCallsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Flag to indicate whether the Call Recording START/STOP announcement is played to an inbound caller."
    },
    "useOrgSettingsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Flag to indicate whether to use the customer level compliance announcement default settings."
    },
    "outboundPSTNCallsEnabled": {
      "type": "boolean",
      "description": "Flag to indicate whether the Call Recording START/STOP announcement is played to an outbound caller."
    },
    "outboundPSTNCallsDelayEnabled": {
      "type": "boolean",
      "description": "Flag to indicate whether compliance announcement is played after a specified delay in seconds."
    },
    "delayInSeconds": {
      "type": "number",
      "example": 10,
      "description": "Number of seconds to wait before playing the compliance announcement."
    }
  }
}