Stop Recording
The StopRecording verb is used to stop a recording that was previously started by a <StartRecording>
verb.
If there is not an ongoing recording at the time of this verb's execution, it has no effect.
If a previous recording was paused, <StopRecording>
will end it.
Text Content
There is no text content available to be set for the <StopRecording>
verb.
Attributes
Attribute | Description |
---|---|
None | None |
Callbacks Received
Callbacks | Can reply with more BXML |
---|---|
Conference Recording Available | No |
Recording Available | No |
Examples
Stop Recording a Call
- XML
- Java
- C#
- Ruby
- NodeJS
- Python
- PHP
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<StopRecording/>
</Response>
StopRecording stopRecording = new StopRecording();
Response response = new Response()
.with(stopRecording);
System.out.println(response.toBXML());
StopRecording stopRecording = new StopRecording();
Response response = new Response();
response.Add(stopRecording);
Console.WriteLine(response.ToBXML());
stop_recording = Bandwidth::Bxml::StopRecording.new
response = Bandwidth::Bxml::Response.new([stop_recording])
p response.to_bxml
const stopRecording = new Bxml.StopRecording();
const response = new Bxml.Response(stopRecording);
console.log(response.toBxml());
stop_recording = StopRecording()
response = Response()
response.add_verb(stop_recording)
print(response.to_bxml())
$stopRecording = new BandwidthLib\Voice\Bxml\StopRecording();
$response = new BandwidthLib\Voice\Bxml\Response();
$response->addVerb($stopRecording);
echo $response->toBxml();