Skip to main content

Overview

You can use voicemail to capture a caller’s message if a call recipient is unavailable. This guide shows how to set up voicemail, either by using our PHLO visual workflow builder or our APIs and XML documents. Follow the instructions in one of the tabs below.
Here’s how to implement voicemail using XML.

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 voicemail

In Visual Studio, create a controller called VoicemailController.cs and paste into it this code.
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;

namespace Receivecall.Controllers
{
    public class VoicemailController : Controller
    {
        // GET: /<controller>/
        public IActionResult Index()
        {
            Plivo.XML.Response resp = new Plivo.XML.Response();
            resp.AddSpeak("Please leave a message. Press the star key when you're done",
                new Dictionary<string, string>() { });
            resp.AddRecord(new Dictionary<string, string>() {
                {"action", "https://<yourdomain>.com/get_recording/"},
                {"finishOnKey", "*"},
                {"maxLength", "20"},
                {"playBeep", "true"},
                {"timeout", "15"}
            });
            resp.AddSpeak("Recording not received",
                new Dictionary<string, string>() { });

            var output = resp.ToString();
            return this.Content(output, "text/xml");
        }
    }
}
Save the file. Edit Properties/launchSettings.json and set the applicationUrl.“applicationUrl”: “http://localhost:5000/Run the project and you should see your basic server application in action at http://localhost:5000/voicemail/.

Create a Plivo application for voicemail

Associate the MVC controller 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 Voicemail. Enter the server URL you want to use (for example https://<yourdomain>.com/voicemail/) in the Answer URL field and set the method to GET. 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 Voicemail (the name we gave the application).Click Update Number to save.

Test

Make a call to your Plivo number and leave yourself a voicemail message.