- Node
- Ruby
- Python
- PHP
- .NET
- Java
- Go
Overview
This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.You can make 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” after the caller enters a valid PIN.
Save the file and run it.You should see your basic server application in action at http://localhost:3000/conference/.

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 with PIN
Create a file calledconference_call.js and paste into it this code.Copy
Ask AI
var plivo = require('plivo');
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
app.use(bodyParser.urlencoded({extended: true}));
app.set('port', (process.env.PORT || 5000));
// Message that Plivo reads when the caller dials in
var WelcomeMessage = "Welcome to the demo. Press 1234 to join the conference";
// Message that Plivo reads when the caller does nothing
var NoinputMessage = "Sorry, I didn't catch that. Please hang up and try again";
// Message that Plivo reads when the caller enters an invalid number.
var WronginputMessage = "Sorry, that's an invalid PIN";
app.post('/conference/', function(request, response) {
var r = plivo.Response();
var getinput_action_url, params, get_input;
getinput_action_url = request.protocol + '://' + request.headers.host + '/conference/firstbranch/';
params = {
'action': getinput_action_url,
'method': 'POST',
'inputType': 'dtmf',
'digitEndTimeout': '5',
'numDigits': '5',
'redirect': 'true',
};
get_input = r.addGetInput(params);
get_input.addSpeak(WelcomeMessage);
r.addSpeak(NoinputMessage);
console.log(r.toXML());
response.set({'Content-Type': 'text/xml'});
response.send(r.toXML());
});
app.post('/conference/firstbranch/', function(request, response) {
var r = plivo.Response();
var getinput_action_url, params, get_input;
var digit = request.query.Digits;
console.log(digit);
if (digit === '1234') {
var params = {
'startConferenceOnEnter': "true",
'endConferenceOnExit': "true"
};
var conference_name = "demo";
r.addConference(conference_name, params);
} else {
r.addSpeak(WronginputMessage);
}
console.log(r.toXML());
response.set({'Content-Type': 'text/xml'});
response.send(r.toXML());
});
app.listen(app.get('port'), function() {
console.log('Node app is running on port', app.get('port'));
});
Copy
Ask AI
$ node conference_call.js
Create a Plivo application for the conference call
Associate the Express 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 oursConference Call. Enter the server URL you want to use (for example https://<yourdomain>.com/conference/) 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, selectXML 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 prompted for a PIN, then placed into a conference after PIN validation.Overview
This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.You can make 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” after the caller enters a valid PIN.
This will generate a controller named plivo_controller in the app/controllers/ directory and a view in app/views/plivo. We can delete the view as we don’t need it.Edit app/controllers/plivo_controller.rb and paste this code into the PlivoController class:Now plivo_controller is ready for your first inbound call. To start the Rails server, runYou should see your basic server application in action at http://localhost:3000/plivo/conference/.

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 Ruby development environment and a web server and safely expose that server to the internet.Create a Rails controller to implement a conference call with PIN
Change to the project directory and run this command to create a Rails controller for inbound calls.Copy
Ask AI
$ rails generate controller Plivo voice
Copy
Ask AI
$ rm app/views/plivo/voice.html.erb
Copy
Ask AI
include Plivo
include Plivo::XML
include Plivo::Exceptions
class PlivoController < ApplicationController
# Message that Plivo reads when the caller dials in
$welcome_message = "Welcome to the demo. Press 1234 to join the conference"
# Message that Plivo reads when the caller does nothing
$noinput_message = "Sorry, I didn't catch that. Please hang up and try again"
# Message that Plivo reads when the caller enters an invalid number
$wronginput_message = "Sorry, that's and invalid PIN"
def conference
r = Response.new()
getinput_action_url = "https://<yourdomain>.com/firstbranch/"
params = {
action: getinput_action_url,
method: 'POST',
digitEndTimeout: '5',
inputType:'dtmf',
numDigits:'4',
redirect:'true'
}
getinput = r.addGetInput(params)
getinput.addSpeak($welcome_message)
r.addSpeak($noinput_message)
xml = PlivoXML.new(r)
render xml: xml.to_xml
end
def firstbranch
digit = params[:Digits]
r = Response.new()
if (digit == "1234")
params = {
'startConferenceOnEnter' => "false",
'waitSound' => "https://<yourdomain>.com/waitmusic/"
}
conference_name = "demo"
r.addConference(conference_name, params)
else
r.addSpeak($wronginput_message)
end
xml = PlivoXML.new(r)
render xml: xml.to_xml
end
end
Add a route
Add a route for the inbound function in the PlivoController class. Edit config/routes.rb and add these lines after the inbound route.Copy
Ask AI
get 'plivo/conference'
get 'plivo/firstbranch'
Copy
Ask AI
$ rails server
Create a Plivo application for the conference call
Associate the Rails 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 oursConference 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, selectXML 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 prompted for a PIN, then placed into a conference after PIN validation.Overview
This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.You can make 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” after the caller enters a valid PIN.
Save the file and run it.You should see your basic server application in action at http://localhost:5000/conference/.

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 Python development environment and a web server and safely expose that server to the internet.Create a Flask application to implement a conference call with PIN
Create a file calledconference_call.py and paste into it this code.Copy
Ask AI
# -*- coding: utf-8 -*-
from flask import Flask, Response, request, url_for
from plivo import plivoxml
# Message that Plivo reads when the caller dials in
welcome_message = "Welcome to the demo. Press 1234 to join the conference"
# Message that Plivo reads when the caller does nothing
noinput_message = "Sorry, I didn't catch that. Please hang up and try again"
# Message that Plivo reads when the caller enters an invalid number
wronginput_message = "Sorry, that's an invalid PIN"
app = Flask(__name__)
@app.route('/conference/', methods=['GET','POST'])
def conference():
response = plivoxml.ResponseElement()
getinput_action_url = "https://<yourdomain>.com/conference/firstbranch/"
response.add(plivoxml.GetInputElement().
set_action(getinput_action_url).
set_method('POST').
set_input_type('dtmf').
set_digit_end_timeout(5).
set_num_digits(4).
set_redirect(True).add(
plivoxml.SpeakElement(welcome_message)))
response.add(plivoxml.SpeakElement(noinput_message))
return Response(response.to_string(), mimetype='application/xml')
@app.route('/conference/firstbranch/', methods=['GET','POST'])
def firstbranch():
response = plivoxml.ResponseElement()
digit = request.values.get('Digits')
if digit == "1234":
getinput_action_url = "https://<yourdomain>.com/secondbranch/"
response.add(
plivoxml.ConferenceElement(
'demo',
start_conference_on_enter=False,
wait_sound='https://<yourdomain>.com/waitmusic/'))
else:
response.add_speak(wronginput_message)
return Response(response.to_string(), mimetype='application/xml')
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True)
Copy
Ask AI
$ python conference_call.py
Create a Plivo application for the conference call
Associate the Flask 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 oursConference Call. Enter the server URL you want to use (for example https://<yourdomain>.com/conference/) 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, selectXML 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 prompted for a PIN, then placed into a conference after PIN validation.Overview
This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.You can make 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” after the caller enters a valid PIN.
This generates a controller named ConferencecallController in the app/http/controllers/ directory. Edit app/http/controllers/ConferencecallController.php and add into it this code.Now ConferencecallController is ready to forward incoming calls to your Plivo number. Start the Laravel server.You should see your basic server application in action at http://localhost:8000/conference/.

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 PHP development environment and a web server and safely expose that server to the internet.Create a Laravel controller to implement a conference call with PIN
Change to the project directory and run this command to create a Laravel controller for inbound calls.Copy
Ask AI
$ php artisan make:controller ConferencecallController
Copy
Ask AI
<?php
namespace App\Http\Controllers;
require '../../vendor/autoload.php';
use Plivo\RestClient;
use Plivo\XML\Response;
use Illuminate\Http\Request;
class ConferencecallController extends Controller
{
// GetInput XML to handle the incoming call
public function conferenceCall()
{
$welcome_message = "Welcome to the demo. Press 1234 to join the conference"; // Message that Plivo reads when the caller dials in
$no_input = "Sorry, I didn't catch that. Please hang up and try again"; // Message that Plivo reads when the caller does nothing
$response = new Response();
$get_input = $response->addGetInput(
[
'action' => "https://<yourdomain>.com/conference/confbranch",
'method' => "POST",
'digitEndTimeout' => "5",
'numDigits' => "4",
'inputType' => "dtmf",
'redirect' => "true",
]);
$get_input->addSpeak($welcome_message, ['language'=>"en-US", 'voice'=>"Polly.Salli"]);
$response->addSpeak($no_input);
Header('Content-type: text/xml');
echo $response->toXML();
}
public function confBranch(Request $request)
{
$wrong_input = "Sorry, that's an invalid PIN"; // Message that Plivo reads when the caller enters an invalid number
$digit = $request->query('Digits');
$response = new Response();
if ($digit=="1234") {
$params = array(
'startConferenceOnEnter' => "true",
'endConferenceOnExit' => "true"
);
$conference_name = "demo";
$response->addConference($conference_name, $params);
} else {
$response->addSpeak($wrong_input);
}
Header('Content-type: text/xml');
echo $response->toXML();
}
}
Add a route
Add a route for the forward function in the ConferencecallController class. Edit routes/web.php and add these lines.Copy
Ask AI
Route::match(['get', 'post'], '/conference', 'ConferenceCallController@conferenceCall');
Route::match(['get', 'post'], '/conference/confbranch', 'ConferenceCallController@confBranch');
Copy
Ask AI
$ php artisan serve
Create a Plivo application for the conference call
Associate the Laravel 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 oursConference 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, selectXML 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 prompted for a PIN, then placed into a conference after PIN validation.Overview
This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.You can make 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” after the caller enters a valid PIN.
Before you start the application, update Properties/launchSettings.json:“applicationUrl”: “http://localhost:5000/”Run the project and you should see your basic server application in action at http://localhost:5000/conference/.

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 .NET development environment and a web server and safely expose that server to the internet.Create an MVC controller to implement a conference call with PIN
In Visual Studio, create a controller calledConferencecallController.cs and paste into it this code.Copy
Ask AI
using System;
using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using Plivo.XML;
namespace Receivecall
{
public class ConferencecallController : Controller
{
// Message that Plivo reads when the caller dials in
String WelcomeMessage = "Welcome to the demo. Press 1234 to join the conference";
// Message that Plivo reads when the caller does nothing
String NoinputMessage = "Sorry, I didn't catch that. Please hang up and try again";
// Message that Plivo reads when the caller enters an invalid number
String WronginputMessage = "Sorry, that's an invalid PIN";
// GET: /<controller>/
public IActionResult Index()
{
var resp = new Response();
Plivo.XML.GetInput get_input = new
Plivo.XML.GetInput("",
new Dictionary<string, string>()
{
{"action", "https://<yourdomain>.com/conference/firstbranch/"},
{"method", "POST"},
{"digitEndTimeout", "5"},
{"numDigits", "4"},
{"inputType", "dtmf"},
{"redirect", "true"},
});
resp.Add(get_input);
get_input.AddSpeak(WelcomeMessage,
new Dictionary<string, string>() { });
resp.AddSpeak(NoinputMessage,
new Dictionary<string, string>() { });
var output = resp.ToString();
return this.Content(output, "text/xml");
}
// Conference Branch
public IActionResult FirstBranch()
{
String digit = Request.Query["Digits"];
Debug.WriteLine("Digit pressed : {0}", digit);
var resp = new Response();
if (digit == "1234")
{
// Add Conference XML Tag
resp.AddConference("demo",
new Dictionary<string, string>()
{
{"startConferenceOnEnter", "true"},
{"endConferenceOnExit", "true"},
{"waitSound", "https://<yourdomain>.com/waitmusic/"}
});
}
else
{
// Add Speak XML Tag
resp.AddSpeak(WronginputMessage,
new Dictionary<string, string>() { });
}
Debug.WriteLine(resp.ToString());
var output = resp.ToString();
return this.Content(output, "text/xml");
}
}
}
Create a Plivo application for the conference call
Associate the .NET 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 oursConference Call. Enter the server URL you want to use (for example https://<yourdomain>.com/conference/) 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, selectXML 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 prompted for a PIN, then placed into a conference after PIN validation.Overview
This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.You can make 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” after the caller enters a valid PIN.
Save the file and run it. You should see your basic server application in action at http://localhost:4567/conference/.

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 Java development environment and a web server and safely expose that server to the internet.Create a Spark application to implement a conference call with PIN
Create a Java class calledConferenceCall and paste into it this code.Copy
Ask AI
import com.plivo.api.xml.*;
import static spark.Spark.post;
public class ConferenceCall {
public static void main(String[] args) {
// Message that Plivo reads when the caller dials in
String WelcomeMessage = "Welcome to the demo. Press 1234 to join the conference";
// Message that Plivo reads when the caller does nothing
String NoinputMessage = "Sorry, I didn't catch that. Please hang up and try again";
// Message that Plivo reads when the caller enters an invalid number
String WronginputMessage = "Sorry, that's an invalid PIN";
post("/conference/", (request, response) -> {
response.type("application/xml");
Response resp = new Response();
resp.children(
new GetInput()
.action("https://<yourdomain>.com/ivr/firstbranch/")
.method("POST")
.inputType("dtmf")
.digitEndTimeout(5)
.numDigits(4)
.redirect(true)
.children(
new Speak(WelcomeMessage)
)
);
resp.children(new Speak(NoinputMessage));
return resp.toXmlString();
});
post("/conference/firstbranch/", (request, response) -> {
response.type("application/xml");
String digit = request.queryParams("Digits");
Response resp = new Response();
if (digit.equals("1234")){
resp.children(
new Speak("You will now be placed into the demo conference"),
new Conference("demo")
.endConferenceOnExit(true)
.startConferenceOnEnter(false)
.waitSound("https://<yourdomain>.com/waitmusic/")
);
resp.children(new Speak(NoinputMessage));
}
else {
resp.children(
new Speak(WronginputMessage)
);
}
return resp.toXmlString();
});
}
}
Create a Plivo application for the conference call
Associate the Spark 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 oursConference Call. Enter the server URL you want to use (for example https://<yourdomain>.com/conference/) 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, selectXML 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 prompted for a PIN, then placed into a conference after PIN validation.Overview
This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.You can make 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” after the caller enters a valid PIN.
Save the file and run it.You should see your basic server application in action at http://localhost:8080/conference/.

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 Go development environment and a web server and safely expose that server to the internet.Create a Go server to implement a conference call with PIN
Create a file calledconference_call.go and paste into it this code.Copy
Ask AI
package main
import (
"github.com/go-martini/martini"
"github.com/plivo/plivo-go/v7/xml"
"net/http"
)
func main() {
m := martini.Classic()
const
(
// Message that Plivo reads when the caller dials in
WelcomeMessage = "Welcome to the demo. Press 1234 to join the conference"
// Message that Plivo reads when the caller does nothing
NoInputMessage = "Sorry, I didn't catch that. Please hang up and try again"
// Message that Plivo reads when the caller enters an invalid number
WrongInputMessage = "Sorry, that's an invalid PIN"
)
m.Post("/conference/", func(w http.ResponseWriter, r *http.Request) string {
w.Header().Set("Content-Type", "application/xml")
response := xml.ResponseElement{
Contents: []interface{}{
new(xml.GetInputElement).
SetAction("https://<yourdomain>.com/ivr/firstbranch/").
SetMethod("POST").
SetDigitEndTimeout(5).
SetInputType("dtmf").
SetNumDigits(4).
SetRedirect(true).
SetContents([]interface{}{new(xml.SpeakElement).
AddSpeak(WelcomeMessage),
}),
new(xml.SpeakElement).
AddSpeak(NoInputMessage),
},
}
return response.String()
})
m.Post("/conference/firstbranch/", func(w http.ResponseWriter, r *http.Request) string {
w.Header().Set("Content-Type", "application/xml")
digit := r.FormValue("Digits")
if digit == "1234" {
return xml.ResponseElement{
Contents: []interface{} {
new(xml.SpeakElement).
AddSpeak("You will now be placed into the demo conference"),
new(xml.ConferenceElement).
SetEndConferenceOnExit(true).
SetStartConferenceOnEnter(false).
SetWaitSound("https://<yourdomain>.com/waitmusic/").
SetContents("demo"),
},
}.String()
} else {
return xml.ResponseElement{
Contents: []interface{}{
new(xml.SpeakElement).
AddSpeak(WrongInputMessage),
},
}.String()
}
})
m.Run()
}
Copy
Ask AI
$ go run conference_call.go
Create a Plivo application for the conference call
Associate the Go 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 oursConference Call. Enter the server URL you want to use (for example https://<yourdomain>.com/conference/) 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, selectXML Application.From the Plivo Application drop-down, select Conference Call (the name we gave the application).Click Update Number to save.