Resume Recording
The ResumeRecording verb is used to resume a recording that was previously paused by a <PauseRecording>
verb.
Audio that occurs between a <PauseRecording>
verb and a <ResumeRecording>
verb will not be present in the recording.
The paused period will not be included in the duration of the recording and therefore will not contribute to the recording portion of the bill.
If there is not an ongoing recording at the time of this verb's execution, it has no effect.
Text Content
There is no text content available to be set for the <ResumeRecording>
verb.
Attributes
Attribute | Description |
---|---|
None | None |
Webhooks Received
There are no webhooks received after the <ResumeRecording>
verb is executed.
Examples
Resume a Recording
- XML
- Java
- C#
- Ruby
- NodeJS
- Python
- PHP
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<ResumeRecording/>
</Response>
ResumeRecording resumeRecording = new ResumeRecording();
Response response = new Response()
.with(resumeRecording);
System.out.println(response.toBXML());
ResumeRecording resumeRecording = new ResumeRecording();
Response response = new Response();
response.Add(resumeRecording);
Console.WriteLine(response.ToBXML());
resume_recording = Bandwidth::Bxml::ResumeRecording.new
response = Bandwidth::Bxml::Response.new([resume_recording])
p response.to_bxml
const resumeRecording = new Bxml.ResumeRecording();
const response = new Bxml.Response(resumeRecording);
console.log(response.toBxml());
resume_recording = ResumeRecording()
response = Response()
response.add_verb(resume_recording)
print(response.to_bxml())
$resumeRecording = new BandwidthLib\Voice\Bxml\ResumeRecording();
$response = new BandwidthLib\Voice\Bxml\Response();
$response->addVerb($resumeRecording);
echo $response->toBxml();