Skip to content

Instantly share code, notes, and snippets.

@dougiebuckets
Created October 30, 2012 15:23
Show Gist options
  • Save dougiebuckets/3980906 to your computer and use it in GitHub Desktop.
Save dougiebuckets/3980906 to your computer and use it in GitHub Desktop.
Record Incoming Calls
<Response>
<!-- The following <Say> element will notify the caller that the call is being recorded -->
<Say>The following call is being recorded.</Say>
<!--
The 'Record' element is used to record the audio during the call.
The 'action' URL is where the Record parameters will be sent.
The HTTP 'method' used to do so is a POST.
The 'transcribe' attribute boolean value is set to true so the call will be transcribed.
The 'transcribeCallback' attribute identifies the URL where the recording transcription will be sent.
-->
<Record action="http://liveoutput.com/record-this-phone-call" method="POST" transcribe="TRUE" transcribeCallback="http://liveoutput.com/transcribe-this-phone-call" />
</Response>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment