You can use the Wait element to aid leaving voice mails on answering machines by adding an extra parameter called beep and setting it to true.Example Request
Copy
Ask AI
from plivo import plivoxmlresponse = (plivoxml.ResponseElement() .add(plivoxml.WaitElement(None) .set_length(10)).add(plivoxml.SpeakElement('Hello')))print(response.to_string())