import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.record_stop(
    conference_name='testing', )
print(response)
HTTP Status Code: 204

If the recording was initiated by the Record API method, you can use this method to stop recording the conference. This can be useful when, for example, you don’t want to record parts of a conference during which critical details are being discussed.

API Endpoint

DELETE
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Record/

Attributes

No arguments need to be passed.

import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.record_stop(
    conference_name='testing', )
print(response)
HTTP Status Code: 204