Call record_mp3
Records a call in mp3 format. The recordings will be stored in the Ozeki Phone System\HttpRecordings folder.
| 
 def record_mp3 finished_url="" | 
Method parameters
| Parameter name | Value | Description | Default value | Mandatory | 
| finished_url | string value e.g. 'http://yourapp.com/record_finished.php' | This URL will be requested if the record finished. | Empty string | No | 
Example
| 
 #get the active calls list calls = OPS.list_active_calls '192.168.0.1', nil, 'admin', 'password' #pick up the first call call = calls[0] if (call != nil) call.record_mp3 'http://localhost/record_finished.php' end | 
