Webex · Schema
CallRecordingPut
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | `true` if call recording is enabled. |
| record | string | Call recording scenario. * `Always` - Incoming and outgoing calls will be recorded with no control to start, stop, pause, or resume. * `Never` - Calls will not be recorded. * `Always with Pause/Resume |
| recordVoicemailEnabled | boolean | When `true`, voicemail messages are also recorded. |
| notification | object | Pause/resume notification settings. |
| repeat | object | Beep sound plays periodically. |
| startStopAnnouncement | object | Call Recording starts and stops announcement settings. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallRecordingPut",
"title": "CallRecordingPut",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"example": true,
"description": "`true` if call recording is enabled."
},
"record": {
"type": "string",
"enum": [
"Always",
"Never",
"Always with Pause/Resume",
"On Demand with User Initiated Start"
],
"description": "Call recording scenario.\n * `Always` - Incoming and outgoing calls will be recorded with no control to start, stop, pause, or resume.\n * `Never` - Calls will not be recorded.\n * `Always with Pause/Resume` - Calls are always recorded, but user can pause or resume the recording. Stop recording is not supported.\n * `On Demand with User Initiated Start` - Records only the portion of the call after the recording start (`*44`) has been entered. Pause, resume, and stop controls are supported.\n"
},
"recordVoicemailEnabled": {
"type": "boolean",
"description": "When `true`, voicemail messages are also recorded."
},
"notification": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"Beep",
"Play Announcement"
],
"description": "Type of pause/resume notification. If `enabled` is `true` and `type` is not provided then `type` is set to `Beep` by default.\n * `Beep` - A beep sound is played when call recording is paused or resumed.\n * `Play Announcement` - A verbal announcement is played when call recording is paused or resumed.\n"
},
"enabled": {
"type": "boolean",
"description": "`true` when notification feature is in effect. `false` indicates notification is disabled."
}
},
"description": "Pause/resume notification settings."
},
"repeat": {
"type": "object",
"properties": {
"interval": {
"type": "number",
"example": 15,
"description": "Interval at which warning tone \"beep\" will be played. This interval is an integer from 10 to 1800 seconds"
},
"enabled": {
"type": "boolean",
"description": "`true` when ongoing call recording tone will be played at the designated interval. `false` indicates no warning tone will be played."
}
},
"description": "Beep sound plays periodically."
},
"startStopAnnouncement": {
"type": "object",
"properties": {
"internalCallsEnabled": {
"type": "boolean",
"example": true,
"description": "When `true`, an announcement is played when call recording starts and an announcement is played when call recording ends for internal calls."
},
"pstnCallsEnabled": {
"type": "boolean",
"example": true,
"description": "When `true`, an announcement is played when call recording starts and an announcement is played when call recording ends for PSTN calls."
}
},
"description": "Call Recording starts and stops announcement settings."
}
}
}