Record Phone Calls in Node.js
In this guide we'll show you how to use Programmable Voice to record phone calls with your Node.js web application. You can tell Twilio to record part of a phone call or the entire thing. The code snippets in this guide are written using modern JavaScript language features in Node.js version 6 or higher, and make use of the following modules:
Let's get started!
Set up your web application
While it might be fun to program a robot to answer a physical phone, Twilio makes answering a phone call as easy as responding to an HTTP request. When a phone number you have bought through Twilio receives an incoming call, Twilio will send an HTTP request to a server you control, asking for instructions on how to handle the call. Your server will respond with an XML document containing TwiML that tells Twilio to read out a message, play an MP3 file, make a recording, and much more.
To start answering phone calls, you must:
- Buy and configure a Twilio-powered phone number capable of making and receiving phone calls, and point it at your web application
- Write web application code to tell Twilio how to handle the incoming call (using TwiML)
- Make your web application accessible on the Internet so Twilio can send you a webhook request when you receive a call
Buy and configure a phone number
In the console, you can search for and buy phone numbers in dozens of different countries, capable of calling (and being called by) just about every phone on the planet.
Once you purchase a number, you'll need to configure that number to send a request to your web application. This callback mechanism is called a webhook. This can be done in the number's configuration page.
What's a Webhook?
A webhook is a callback mechanism that allows two systems to communicate events to one another over the Internet using HTTP requests. In this case, Twilio is sending a webhook request to your web application whenever a phone number you control receives an incoming call. You'll see this webhook mechanism used in many Twilio APIs for handling event notifications like this.
Not working on a server with a public URL? We'll show you how to expose your local development machine to the public Internet later in this guide. Next, you'll need to write some server-side code that will be executed when an incoming call comes in.
Record part of a phone call
Now comes the fun part - writing code that will handle an incoming HTTP request from Twilio!
In this example we'll use the Express web framework for Node.js to respond to Twilio's request and we'll use TwiML to tell Twilio how to handle the call.
TwiML is a set of XML tags that tell Twilio how to handle an incoming call (or SMS). In this example we tell Twilio to read some instructions to the caller and then record whatever the caller says next.
You can listen to your recordings in your Twilio Console or access them directly through Twilio's REST API.
Transcribing a recording
You can also tell Twilio to transcribe a recording, giving you a text representation of what the caller said.
Here we add "transcribe: true" to our response to tell Twilio to transcribe the recording after it's complete. We also pass a "maxLength" argument to limit the length of the recording (it defaults to an hour).
Check out the <Record> reference docs to see all the parameters you can use to customize your recordings.
Record an entire outgoing call
When you make outgoing calls with the Twilio REST API, you can tell Twilio to record the entire call from beginning to end.
Grab your Twilio account credentials
First, you'll need to get your Twilio account credentials. They can be found on the home page of the console.
Make and record an outbound call
Just pass an extra "record" argument to "client.calls.create()" and Twilio will record the entire phone call.
Once the call is complete, you can listen to your recordings in your Twilio Console or access them directly through Twilio's REST API.
You can also gain access to the recording as soon as the call is complete by including a recordingStatusCallback
with your client.calls.create
method. When your recording is ready, Twilio will send a request to the URL you specified, and that request will include a link to the recording's audio file.
You can learn more about the RecordingStatusCallback
parameter in the Call Resource API documentation.
Where to next?
If this guide was helpful, you might also want to check out these tutorials for Programmable Voice and Node.js. Tutorials walk through full sample applications, implementing Twilio use cases like these:
Happy hacking!
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.