Start recording a call
POST https://api.plivo.com/v1/Account/{{auth_id}}/Call/{call_uuid}/Record/
This endpoint allows you to start recording a call.
Below is the list of arguments that can be passed in this API request, more information can be found here
Arguments | Description | Required/Conditional/Optional |
---|---|---|
time_limit | Sets the maximum duration post which the recording will be stopped automatically. The default value is 60 seconds. | Optional |
file_format | This allows you to specify the format in which you want the recording in. The formats supported are mp3 and wav. By default recordings are in mp3 format. | Optional |
transcription_type | auto: Transcription is completely automated; turnaround time is about 30 minutes.Transcriptions are charged and details are available in pricing page. | Optional |
Request Body
{"time_limit"=>"60", "file_format"=>"mp3", "transcription_type"=>"auto", "transcription_url"=>"https://transcription.url", "transcription_method"=>"POST", "callback_url"=>"https://callback.url", "callback_method"=>"POST"}