import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.calls.record_stop(
    call_uuid='3a2e4c90-dcee-4931-8a59-f123ab507e60', )
print(response)
HTTP Status Code: 204

This endpoint lets you stop active recordings on a call. Since a call can have multiple ongoing recordings, this endpoint lets you choose a specific recording to stop, or you can stop all ongoing recordings.

API Endpoint

DELETE
https://api.plivo.com/v1/Account/{auth_id}/Call/{call_uuid}/Record/

Arguments

ParameterTypeDescription
URLstringYou can specify a record URL to stop only one record. By default, all recordings are stopped.
import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.calls.record_stop(
    call_uuid='3a2e4c90-dcee-4931-8a59-f123ab507e60', )
print(response)
HTTP Status Code: 204