- Node
- Ruby
- Python
- PHP
- .NET
- Java
- Go
Overview
This guide shows how to make voice calls to alert customers to critical issues that require immediate attention. You can play recorded audio when the call recipient answers or use text-to-speech. You can then take action based on a dialpad key they press in response. You can set different actions if the call is not answered, if the line is busy, or if you reach voicemail.You can send voice alerts 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 use Plivo APIs and XML to implement voice alerts.
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 see how this works, you can use https://s3.amazonaws.com/static.plivo.com/alert.xml as an answer URL to test your first outgoing call. The file contains this XML code:This code instructs Plivo to say, “Your database is out of memory. Press 1 to resolve or 2 to escalate” to the call recipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.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).
How it works

Copy
Ask AI
<Response>
<Speak>Your database is out of memory. Press 1 to resolve or 2 to escalate.</Speak>
</Response>
Prerequisites
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 using Plivo APIs, follow our instructions to set up a Node.js development environment.Create a voice alerts application in Node.js
Create a file calledMakecall.js and paste into it this code.Copy
Ask AI
var plivo = require('plivo');
(function main() {
'use strict';
var client = new plivo.Client("<auth_id>","<auth_token>");
client.calls.create(
"<caller_id>", // from
"<destination_number>", // to
"https://s3.amazonaws.com/static.plivo.com/alert.xml", // answer url
{
answerMethod: "GET",
},
).then(function (response) {
console.log(response);
}, function (err) {
console.error(err);
});
})();
Note: We recommend that you store your credentials in the
auth_id and auth_token environment variables, to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use process.env to store environment variables and fetch them while initializing the client.Test
Save the file and run it.Copy
Ask AI
$ node Makecall.js
Overview
This guide shows how to make voice calls to alert customers to critical issues that require immediate attention. You can play recorded audio when the call recipient answers or use text-to-speech. You can then take action based on a dialpad key they press in response. You can set different actions if the call is not answered, if the line is busy, or if you reach voicemail.You can send voice alerts 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 use Plivo APIs and XML to implement voice alerts.
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 see how this works, you can use https://s3.amazonaws.com/static.plivo.com/alert.xml as an answer URL to test your first outgoing call. The file contains this XML code:This code instructs Plivo to say, “Your database is out of memory. Press 1 to resolve or 2 to escalate” to the call recipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.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).
How it works

Copy
Ask AI
<Response>
<Speak>Your database is out of memory. Press 1 to resolve or 2 to escalate.</Speak>
</Response>
Prerequisites
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 using Plivo APIs, follow our instructions to set up a Ruby development environment.Create a voice alerts application in Ruby
Create a file calledmake_call.rb and paste into it this code.Copy
Ask AI
require 'rubygems'
require 'plivo'
include Plivo
include Plivo::Exceptions
api = RestClient.new("<auth_id>","<auth_token>")
begin
response = api.calls.create(
'<caller_id>',
['<destination_number>'],
'https://s3.amazonaws.com/static.plivo.com/alert.xml'
)
puts response
rescue PlivoRESTError => e
puts 'Exception: ' + e.message
end
Note:
We recommend that you store your credentials in the
auth_id and auth_token environment variables, to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use ENV to store environment variables and fetch them when initializing the client.Test
Save the file and run it.Copy
Ask AI
$ ruby make_call.rb
Overview
This guide shows how to make voice calls to alert customers to critical issues that require immediate attention. You can play recorded audio when the call recipient answers or use text-to-speech. You can then take action based on a dialpad key they press in response. You can set different actions if the call is not answered, if the line is busy, or if you reach voicemail.You can send voice alerts 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 use Plivo APIs and XML to implement voice alerts.
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 see how this works, you can use https://s3.amazonaws.com/static.plivo.com/notification.xml as an answer URL to test your first outgoing call. The file contains this XML code:This code instructs Plivo to say, “Your database is out of memory. Press 1 to resolve or 2 to escalate” to the call recipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.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).
How it works

Copy
Ask AI
<Response>
<Speak>Your database is out of memory. Press 1 to resolve or 2 to escalate.</Speak>
</Response>
Prerequisites
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 using Plivo APIs, follow our instructions to set up a Python development environment.Create a voice alerts application in Python
Create a file calledmake_call.py and paste into it this code.Copy
Ask AI
import plivo
client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.calls.create(
from='<caller_id>',
to='<destination_number>',
answer_url='https://s3.amazonaws.com/static.plivo.com/alert.xml',
answer_method='GET', )
print(response)
Note: We recommend that you store your credentials in the
auth_id and auth_token environment variables, to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use the os module (os.environ) to store environment variables and fetch them when initializing the client.Test
Save the file and run it.Copy
Ask AI
$ python make_call.py
Overview
This guide shows how to make voice calls to alert customers to critical issues that require immediate attention. You can play recorded audio when the call recipient answers or use text-to-speech. You can then take action based on a dialpad key they press in response. You can set different actions if the call is not answered, if the line is busy, or if you reach voicemail.You can send voice alerts 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 use Plivo APIs and XML to implement voice alerts.
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 see how this works, you can use https://s3.amazonaws.com/static.plivo.com/alert.xml as an answer URL to test your first outgoing call. The file contains this XML code:This code instructs Plivo to say, “Your database is out of memory. Press 1 to resolve or 2 to escalate” to the call recipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.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).
How it works

Copy
Ask AI
<Response>
<Speak>Your database is out of memory. Press 1 to resolve or 2 to escalate.</Speak>
</Response>
Prerequisites
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 using Plivo APIs, follow our instructions to set up a PHP development environment.Create a voice alerts application in PHP
Create a file calledMakeCall.php and paste into it this code:Copy
Ask AI
<?php
require 'vendor/autoload.php';
use Plivo\RestClient;
$auth_id = "Your AUTH_ID";
$auth_token = "Your AUTH_TOKEN";
$p = new RestClient($auth_id, $auth_token);
$response = $client->calls->create('<caller_id>',
['<destination_number>'],
'https://s3.amazonaws.com/static.plivo.com/alert.xml',);
print_r($response);
Note:
We recommend that you store your credentials in the
auth_id and auth_token environment variables, to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use the $_ENV or putenv/getenv functions to store environment variables and fetch them when initializing the client.Test
Save the file and run it.Copy
Ask AI
$ php MakeCall.php
Overview
This guide shows how to make voice calls to alert customers to critical issues that require immediate attention. You can play recorded audio when the call recipient answers or use text-to-speech. You can then take action based on a dialpad key they press in response. You can set different actions if the call is not answered, if the line is busy, or if you reach voicemail.You can send voice alerts 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 use Plivo APIs and XML to implement voice notifications.
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 see how this works, you can use https://s3.amazonaws.com/static.plivo.com/alert.xml as an answer URL to test your first outgoing call. The file contains this XML code:This code instructs Plivo to say, “Your database is out of memory. Press 1 to resolve or 2 to escalate” to the call recipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.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).
How it works

Copy
Ask AI
<Response>
<Speak>Your database is out of memory. Press 1 to resolve or 2 to escalate.</Speak>
</Response>
Prerequisites
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 using Plivo APIs, follow our instructions to set up a Dotnet development environment.Create a voice alerts application in C#
In Visual Studio, open the file in the CS project calledProgram.cs and paste into it this code.Copy
Ask AI
using System;
using System.Collections.Generic;
using Plivo;
namespace testplivo
{
class Program
{
static void Main(string[] args)
{
var api = new PlivoApi("<auth_id>","<auth_token>");
var response = api.Call.Create(
to: new List<String> { "<destination_number>" },
from: "<caller_id>",
answerMethod: "GET",
answerUrl: "https://s3.amazonaws.com/static.plivo.com/alert.xml"
);
Console.WriteLine(response);
}
}
}
Note: We recommend that you store your credentials in the
auth_id and auth_token environment variables, to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use the <a href="https://docs.microsoft.com/en-us/dotnet/api/system.environment.setenvironmentvariable?view=netcore-3.1" rel="nofollow">Environment.SetEnvironmentVariable</a> method to store environment variables and <a href="https://docs.microsoft.com/en-us/dotnet/api/system.environment.getenvironmentvariable?view=netcore-3.1" rel="nofollow">Environment.GetEnvironmentVariable</a> to fetch them when initializing the client.Test
Save the file and run it.
Overview
This guide shows how to make voice calls to alert customers to critical issues that require immediate attention. You can play recorded audio when the call recipient answers or use text-to-speech. You can then take action based on a dialpad key they press in response. You can set different actions if the call is not answered, if the line is busy, or if you reach voicemail.You can send voice alerts 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 use Plivo APIs and XML to implement voice notifications.
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 see how this works, you can use https://s3.amazonaws.com/static.plivo.com/alert.xml as an answer URL to test your first outgoing call. The file contains this XML code:This code instructs Plivo to say, “Your database is out of memory. Press 1 to resolve or 2 to escalate” to the call recipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.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).
How it works

Copy
Ask AI
<Response>
<Speak>Your database is out of memory. Press 1 to resolve or 2 to escalate.</Speak>
</Response>
Prerequisites
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 using Plivo APIs, follow our instructions to set up a Java development environment.Create a voice alerts application in Java
Create a Java class in the project calledMakeCall and paste into it this code.Copy
Ask AI
import java.io.IOException;
import java.util.Collections;
import com.plivo.api.Plivo;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.call.Call;
import com.plivo.api.models.call.CallCreateResponse;
class MakeCall {
public static void main(String [] args) throws IOException, PlivoRestException {
Plivo.init("<auth_id>","<auth_token>");
CallCreateResponse response = Call.creator("<caller_id>",
Collections.singletonList("<destination_number>"),
"https://s3.amazonaws.com/static.plivo.com/alert.xml")
.answerMethod("GET")
.create();
System.out.println(response);
}
}
Note: We recommend that you store your credentials in the
auth_id and auth_token environment variables, to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use System.getenv() to store environment variables and retrieve them when initializing the client.Test
Save the file and run it.
Overview
This guide shows how to make voice calls to alert customers to critical issues that require immediate attention. You can play recorded audio when the call recipient answers or use text-to-speech. You can then take action based on a dialpad key they press in response. You can set different actions if the call is not answered, if the line is busy, or if you reach voicemail.You can send voice alerts 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 use Plivo APIs and XML to implement voice alerts.
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 see how this works, you can use https://s3.amazonaws.com/static.plivo.com/answer.xml as an answer URL to test your first outgoing call. The file contains this XML code:This code instructs Plivo to say, “Your database is out of memory. Press 1 to resolve or 2 to escalate” to the callrecipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.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).
How it works

Copy
Ask AI
<Response>
<Speak>Your database is out of memory. Press 1 to resolve or 2 to escalate.</Speak>
</Response>
Prerequisites
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 using Plivo APIs, follow our instructions to set up a Go development environment.Create a voice alerts application in Go
Create a file calledMakeCall.go and paste into it this code.Copy
Ask AI
package main
import "fmt"
import "github.com/plivo/plivo-go/v7"
func main() {
client, err := plivo.NewClient("<auth_id>","<auth_token>", &plivo.ClientOptions{})
if err != nil {
fmt.Print("Error", err.Error())
return
}
response, err := client.Calls.Create(
plivo.CallCreateParams{
From: "<caller_id>",
To: "<destination_number>",
AnswerURL: "https://s3.amazonaws.com/static.plivo.com/alert.xml",
AnswerMethod: "GET",
},
)
if err != nil {
fmt.Print("Error", err.Error())
return
}
fmt.Printf("Response: %#v\n", response)
}
Note: We recommend that you store your credentials in the
auth_id and auth_token environment variables, to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use the os.Setenv and os.Getenv functions to store environment variables and fetch them when initializing the client.Test
Save the file and run it.Copy
Ask AI
go run MakeCall.go