import plivo

client = plivo.RestClient(auth_id="<auth_id>", auth_token="<auth_token>")

response = client.multi_party_calls.stop_recording(friendly_name='mpc_name')
print(response)
HTTP Status Code: 204

This endpoint stops recording a Multiparty Call.

DELETE
https://api.plivo.com/v1/Account/{auth_id}/MultiPartyCall/name_{mpc_name}/Record/

Arguments

No arguments need to be passed.

Returns

Returns an acknowledgement that the recording has been stopped.

import plivo

client = plivo.RestClient(auth_id="<auth_id>", auth_token="<auth_token>")

response = client.multi_party_calls.stop_recording(friendly_name='mpc_name')
print(response)
HTTP Status Code: 204