Skip to main content
Connects the caller to a named conference room. Multiple callers joining the same room name are bridged together into a group call. If the room does not exist, Vobiz creates it automatically. The room name is the element’s text content (case-sensitive). Conference takes no child elements. Because the caller stays in the room until they leave or the conference ends, any elements placed after <Conference> run only once this participant exits.

Quick example

<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Speak>You are joining the conference now.</Speak>
    <Conference
        startConferenceOnEnter="true"
        endConferenceOnExit="false"
        callbackUrl="https://yourapp.com/conference-events">
        MyConferenceRoom
    </Conference>
</Response>

Next steps

  • Attributes - Full reference for every Conference element attribute.
  • Conference Callbacks - Webhook events fired when participants enter, exit, or the conference starts and ends.