Webex · Schema

GetOrgComplianceAnnouncementObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
inboundPSTNCallsEnabled boolean Flag to indicate whether the call recording START/STOP announcement is played to an inbound caller.
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-getorgcomplianceannouncementobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetOrgComplianceAnnouncementObject",
  "title": "GetOrgComplianceAnnouncementObject",
  "type": "object",
  "required": [
    "inboundPSTNCallsEnabled",
    "outboundPSTNCallsEnabled",
    "outboundPSTNCallsDelayEnabled",
    "delayInSeconds"
  ],
  "properties": {
    "inboundPSTNCallsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Flag to indicate whether the call recording START/STOP announcement is played to an inbound caller."
    },
    "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."
    }
  }
}