stopCallRecording
If startCallRecording is used, this will stop the call recording. If call recording is not enabled, this will do nothing.
Examples
startCallRecording("http://example.com/recording.php"); ask("What's your favorite color? Choose from red, blue or green.", { choices:"red, blue, green" }); stopCallRecording();
startCallRecording "http://example.com/recording.php" ask "What's your favorite color? Choose from red, blue or green.", { :choices => "red, blue, green", :attempts => 3} stopCallRecording
startCallRecording("http://example.com/recording.php"); ask("What's your favorite color? Choose from red, blue or green.", array( "choices" =>"red, blue, green", "attempts" => 3 )); stopCallRecording(); ?>
startCallRecording("http://example.com/recording.php"); ask("What's your favorite color? Choose from red, blue or green.", { "choices":"red, blue, green", "attempts":3 }); stopCallRecording();
startCallRecording("http://example.com/recording.php"); ask("What's your favorite color? Choose from red, blue or green.", [ choices:"red, blue, green", attempts:3 ]); stopCallRecording();