Webex · Schema
GetComplianceAnnouncementObject
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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetComplianceAnnouncementObject",
"title": "GetComplianceAnnouncementObject",
"type": "object",
"required": [
"inboundPSTNCallsEnabled",
"useOrgSettingsEnabled",
"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."
},
"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."
}
}
}