Response
Call
Multiparty call
- Overview
- The Multiparty object
- Activate a multiparty call
- Retrieve a multiparty call
- Retrieve all multiparty calls
- End a multiparty call
- Participants
- Multiparty call recording
Conference
Audio Stream
Verified Caller ID
Endpoint
Audio Stream
Stop all audio Streams
Copy
Ask AI
import plivo
client = plivo.RestClient('<auth_id>','<auth_token>')
client.calls.delete_all_streams('ebe4ab56-9b72-4c3e-9870-5f4262847407')
Copy
Ask AI
{
"api_id": "79cf3765-0f65-11ee-809f-0242ac110003",
"error": "No active stream found"
}
This method stops all the audio streaming of the given call.
API Endpoint
DELETE
Copy
Ask AI
https://api.plivo.com/v1/Account/{auth_id}/Call/{call_uuid}/Stream/
Arguments
No arguments need to be passed.
Copy
Ask AI
import plivo
client = plivo.RestClient('<auth_id>','<auth_token>')
client.calls.delete_all_streams('ebe4ab56-9b72-4c3e-9870-5f4262847407')
Copy
Ask AI
{
"api_id": "79cf3765-0f65-11ee-809f-0242ac110003",
"error": "No active stream found"
}
Copy
Ask AI
import plivo
client = plivo.RestClient('<auth_id>','<auth_token>')
client.calls.delete_all_streams('ebe4ab56-9b72-4c3e-9870-5f4262847407')
Copy
Ask AI
{
"api_id": "79cf3765-0f65-11ee-809f-0242ac110003",
"error": "No active stream found"
}
Assistant
Responses are generated using AI and may contain mistakes.