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
Speak text on calls
Stop speaking text during a call
Copy
Ask AI
import plivo
client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.calls.speak_stop(
call_uuid='3a2e4c90-dcee-4931-8a59-f123ab507e60', )
print(response)
Copy
Ask AI
{
"message" : "speak stopped",
"api_id" : "cf2359c8-f4d6-11e6-b886-067c5485c240"
}
This endpoint lets you stop active text being spoken during a call.
API Endpoint
DELETE
Copy
Ask AI
https://api.plivo.com/v1/Account/{auth_id}/Call/{call_uuid}/Speak/
Arguments
No arguments need to be passed.
Copy
Ask AI
import plivo
client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.calls.speak_stop(
call_uuid='3a2e4c90-dcee-4931-8a59-f123ab507e60', )
print(response)
Copy
Ask AI
{
"message" : "speak stopped",
"api_id" : "cf2359c8-f4d6-11e6-b886-067c5485c240"
}
Copy
Ask AI
import plivo
client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.calls.speak_stop(
call_uuid='3a2e4c90-dcee-4931-8a59-f123ab507e60', )
print(response)
Copy
Ask AI
{
"message" : "speak stopped",
"api_id" : "cf2359c8-f4d6-11e6-b886-067c5485c240"
}
Assistant
Responses are generated using AI and may contain mistakes.