MultiPartyCall
Conference
AudioStream
- Overview
- Initiate an audio stream
- Stream events to Plivo
Dial
GetDigits
PreAnswer
Redirect
Conference
Basic conference
The first caller to execute this XML joins the conference “My Room.” When a subsequent caller executes this XML, they’ll join the same conference and the conference will start.
Copy
Ask AI
from plivo import plivoxml
response = plivoxml.ResponseElement()
response.add(plivoxml.ConferenceElement('My Room'))
print(response.to_string())
# Or, you can use add_conference
response = plivoxml.ResponseElement()
response.add_conference(content='My Room')
print(response.to_string())
Response
Copy
Ask AI
<Response>
<Conference>My Room</Conference>
</Response>
Assistant
Responses are generated using AI and may contain mistakes.