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 plivoxmlresponse = plivoxml.ResponseElement()response.add(plivoxml.ConferenceElement('My Room'))print(response.to_string())# Or, you can use add_conferenceresponse = plivoxml.ResponseElement()response.add_conference(content='My Room')print(response.to_string())