Dhina
01/30/2026, 7:43 PMVapi Support Bot
01/30/2026, 7:44 PMjs
app.post("/conference", (req, res) => {
const VoiceResponse = twilio.twiml.VoiceResponse;
const twiml = new VoiceResponse();
const dial = twiml.dial();
dial.conference(
{
startConferenceOnEnter: true,
endConferenceOnExit: true,
},
"my_conference_room"
);
return res.type("text/xml").send(twiml.toString());
});
This puts callers into a shared conference room. Adjust options as needed for your workflow.
For more details, see the [VAPI + Twilio conference call documentation](https://docs.vapi.ai/calls/call-handling-with-vapi-and-twilio).
Source:
- [Call Handling with Vapi and Twilio](https://docs.vapi.ai/calls/call-handling-with-vapi-and-twilio)Chiranjeet Mishra
02/03/2026, 8:06 AMDhina
02/11/2026, 2:15 AM