Plivo lets you automate voice surveys for use cases such as collecting feedback from customers and conducting polling on political issues. You can set up multiple levels of questions and walk users through different paths depending on the keys they press in response to your questions, and save the responses for analysis.
You can implement voice surveys either by using our PHLO visual workflow builder or our APIs and XML documents. Follow the instructions in one of the tabs below.
You can create and deploy a PHLO to automate voice surveys with a few clicks on the PHLO canvas, and trigger it with a few lines of code.
To get started, you need a Plivo account — sign up with your work email address if you don’t have one already. If this is your first time triggering a PHLO with Java, follow our instructions to set up a Java development environment.
To create a PHLO, visit the PHLO page of the Plivo console. If this is your first PHLO, the PHLO page will be empty.
Click Create New PHLO.
In the Choose your use case pop-up, click Build my own. The PHLO canvas will appear with the Start node.
Validate the configuration by clicking Validate. Every time you finish configuring a node, click Validate to check the syntax and save your changes.
From the list of components on the left side, drag and drop the Initiate Call component onto the canvas. This adds an Initiate Call node onto the canvas. When a component is placed on the canvas it becomes a node.
Repeat the process with another IVR Menu node. Rename it Question_2.
Drag and drop the Play Audio component onto the canvas. Draw a line to connect the Question_2 node‘s 1 and 2 trigger states to the Play Audio node.
Drag and drop the HTTP Request component onto the canvas. Draw a line to connect the Acknowledge_Participation node‘s Prompt Completed trigger state to the HTTP Request node.
Your PHLO is now ready to test.
You integrate a PHLO into your application workflow by making an API request to trigger the PHLO with the required payload — the set of parameters you pass to the PHLO. You can define a static payload by specifying values when you create the PHLO, or define a dynamic payload by passing values through parameters when you trigger the PHLO from your application.
When you configure values when creating the PHLO, they act as a static payload.
Create a Java class in the project called TriggerPhlo
and paste into it this code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import com.plivo.api.Plivo;
import com.plivo.api.PlivoClient;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.phlo.Phlo;
import java.io.IOException;
public class Example
{
private static final String authId = "<auth_id>";
private static final String authToken = "<auth_token>";
private static PlivoClient client = new PlivoClient(authId, authToken);
public static void main(String[] args) throws IOException, PlivoRestException
{
String phloId = "<phlo_id>";
Plivo.init(authId, authToken);
Phlo phlo = Phlo.getter(phloId).client(client).get();
PhloUpdateResponse response = Phlo.updater(phloId).payload().run();
}
}
Replace the auth placeholders with your authentication credentials from the Plivo console. Replace the phlo_id placeholder with your PHLO ID from the Plivo console.
To use dynamic values for the parameters, use Liquid templating parameters when you create the PHLO and pass the values from your code to the PHLO when you trigger it.
Create a Java class in the project called TriggerPhlo
and paste into it this code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import com.plivo.api.Plivo;
import com.plivo.api.PlivoClient;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.phlo.Phlo;
import java.io.IOException;
public class Example
{
private static final String authId = "<auth_id>";
private static final String authToken = "<auth_token>";
private static PlivoClient client = new PlivoClient(authId, authToken);
public static void main(String[] args) throws IOException, PlivoRestException
{
String phloId = "<phlo_id>";
Plivo.init(authId, authToken);
Phlo phlo = Phlo.getter(phloId).client(client).get();
Map<String, Object> payload = new HashMap<>();
payload.put("from", "<caller_id>");
payload.put("to", "<destination_number>");
PhloUpdateResponse response = Phlo.updater(phloId).payload(payload).run();
}
}
Replace the auth placeholders with your authentication credentials from the Plivo console. Replace the phlo_id placeholder with your PHLO ID from the Plivo console. Replace the phone number placeholders with actual phone numbers in E.164 format (for example, +12025551234).
Save the file and run it.
Here’s how to use Plivo APIs and XML to implement voice surveys.
Plivo requests an answer URL when the call is answered (step 4) and expects the file at that address to hold a valid XML response from the application with instructions on how to handle the call.
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 Java class called Survey
and paste into it this code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import static spark.Spark.*;
import com.plivo.api.xml.GetInput;
import com.plivo.api.xml.Play;
import com.plivo.api.xml.Response;
import com.plivo.api.xml.Speak;
public class IVR {
public static void main(String[] args) {
// Message that Plivo reads when the call recipient answers
String Question1 = "Hi, this is a call from Plivo. How would you rate your overall satisfaction with our services? Press 1 if you're satisfied or 2 to suggest improvements";
String Question2 = "How would you rate your satisfaction with our customer service? Press 1 if you're satisfied or 2 to suggest improvements";
// Message that Plivo reads when the recipient provides negative feedback
String NegativeFeedback = "We're sorry about your bad experience. One of our representatives will get in touch with you";
// 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 not a valid entry";
post("/survey/", (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)
.redirect(true)
.children(
new Speak(Question1)
)
);
resp.children(new Speak(NoinputMessage));
return resp.toXmlString();
});
post("/survey/firstbranch/", (request, response) -> {
response.type("application/xml");
String digit = request.queryParams("Digits");
Response resp = new Response();
if (digit.equals("1")){
resp.children(
new GetInput()
.action("https://<yourdomain>.com/ivr/secondbranch/")
.method("POST")
.inputType("dtmf")
.digitEndTimeout(5)
.redirect(true)
.children(
new Speak(Question2)
)
);
resp.children(new Speak(NoinputMessage));
}
else if (digit.equals("2")){
resp.children(
new Speak(NegativeFeedback)
);
}
else {
resp.children(
new Speak(WronginputMessage)
);
}
return resp.toXmlString();
});
post("/survey/secondbranch/", (request, response) -> {
response.type("application/xml");
String digit = request.queryParams("Digits");
Response resp = new Response();
if (digit.equals("1")){
resp.children(
new Speak("Thank you for participating in the survey", "MAN","en-GB",1)
);
}
else if (digit.equals("2")){
resp.children(
new Speak(NegativeFeedback)
);
}
else {
resp.children(
new Speak(WronginputMessage)
);
}
return resp.toXmlString();
});
}
}
Replace the auth placeholders with your authentication credentials from the Plivo console. Replace the phone number placeholders with actual phone numbers in E.164 format (for example, +12025551234).
Save the file and run it. You should see your basic server application in action at http://localhost:4567/survey/.
Set up ngrok to expose your local server to the internet.
Make a call to a Plivo phone number and see how the survey application works.