stop_record_call
Stop an active background recording.
Parameters
Name | Type | Required? | Default | Description |
---|---|---|---|---|
control_id | string | Optional | the last started recording will be stopped | Identifier for the recording to stop |
Variables
Read by the method:
- record_control_id: (in) control ID of last recording started.
Set by the method:
- stop_record_call_result: (out)
success
|failed
Examples
Stop last call recording
- YAML
- JSON
version: 1.0.0
sections:
main:
- stop_record_call
{
"version": "1.0.0",
"sections": {
"main": [
"stop_record_call"
]
}
}
Stop a specific call recording
- YAML
- JSON
version: 1.0.0
sections:
main:
- stop_record_call: "my-recording-id"
{
"version": "1.0.0",
"sections": {
"main": [
{
"stop_record_call": "my-recording-id"
}
]
}
}