Skip to main content
  • Node
  • Ruby
  • Python
  • PHP
  • .NET
  • Java
  • Go

Overview

This guide shows how to create and configure conference calling, which lets you connect multiple people to one call at the same time.You can implement PINless conference calls either by using our PHLO visual workflow builder or our APIs and XML documents. Follow the instructions in one of the tabs below.
  • Using XML
Here’s how to receive a call on a Plivo number and add the caller to a conference call named “demo” using the Conference XML element.

How it works

Prerequisites

To get started, you need a Plivo account — sign up with your work email address if you don’t have one already. You must have a voice-enabled Plivo phone number to receive incoming calls; you can rent numbers from the Numbers page of the Plivo console, or by using the Numbers API. If this is your first time using Plivo APIs, follow our instructions to set up a Node.js development environment and a web server and safely expose that server to the internet.

Create an Express server to implement a conference call

Create a file called conference_call.js and paste into it this code.
var express = require('express')
var app = express()

app.post('/conference_call/', function(req, res) {
    var plivo = require('plivo');
    var response = plivo.Response();

    var speak_body = "You will now be placed into the demo conference";
    response.addSpeak(speak_body);

    var params = {
        'startConferenceOnEnter': "true",
        'endConferenceOnExit': "true"
    };
    var conference_name = "demo";
    response.addConference(conference_name, params);
    res.send(response.toXML());
})

app.set('port', (process.env.PORT || 5000));
app.listen(app.get('port'), function() {
    console.log('Node app is running on port', app.get('port'));
});
Save the file and run it.
$ node conference_call.js
You should see your basic server application in action at http://localhost:3000/conference_call/.

Create a Plivo application for the conference call

Associate the Node.js application you created with Plivo by creating a Plivo application. Visit Voice > Applications in the Plivo console and click on Add New Application, or use Plivo’s Application API.Give your application a name — we called ours Conference Call. Enter the server URL you want to use (for example https://<yourdomain>.com/conference_call/) in the Answer URL field and set the method to POST. Click Create Application to save your application.

Assign a Plivo number to your application

Navigate to the Numbers page and select the phone number you want to use for this application.From the Application Type drop-down, select XML Application.From the Plivo Application drop-down, select Conference Call (the name we gave the application).Click Update Number to save.

Test

Make a call to your Plivo number. You should be placed into a conference.