Plivo endpoints expand the capabilities of your existing SIP phones, allowing you to add custom business logic when you make or receive calls. Traditionally, SIP phones had very basic functionality and needed to be connected to a PBX to bring them to life. With Plivo endpoints, you no longer need to set up and manage your phone system. Any Plivo application can implement the business logic needed to control your SIP phone, using any of your favorite coding languages without any need to understand the telecommunications details. Plivo supports all common SIP-based softphones and hardware phones.
With Plivo and your SIP phones, you can implement:
Once you configure and set up your SIP phone, register it with Plivo. When you initiate a call using the SIP phone, you don’t connect directly to another phone or extension. Instead, you instruct Plivo to fetch XML from the attached application on your server to handle the call request. This is similar to the way that Plivo handles incoming calls from a regular phone number. You can use all Plivo XML elements to handle a call request. You can also use the Dial element to dial out to a regular phone, WebRTC device, or another SIP phone.
Sign up for a Plivo account.
Create an endpoint by visiting Voice > Endpoints, clicking on Add New Endpoint, and filling in the required details. The Username should be a unique ID for the endpoint.
Plivo adds random numbers after the username you enter. If, for instance, you choose “obiwan” as your username, Plivo might set it up as “obiwan01356015703850523884.” Specify a password you can use to authenticate the endpoint. Set an alias (maybe “ben” in this case) which Plivo uses when it displays all your endpoints, and optionally a subaccount to associate the endpoint with.
To start making calls, attach Plivo’s default direct dial application to the endpoint you created.
When you make a call from a softphone, Plivo sends a request to the answer URL of the application attached to the endpoint with call-related parameters. To process the call, Plivo requires a valid XML response from the answer URL. Let’s say, in our case, that we want to create a quick dial application and make an outbound call to the number entered from the softphone. The answer URL will receive a request with the From and To parameters. Our application needs to parse these parameters and return a Dial XML element with the correct attributes.
When this XML is returned to the request, Plivo will make an outbound call to 18003231234 and connect it to the softphone.
For technical information, see our Endpoint API reference documentation.
Once you have an endpoint set up you can associate a SIP phone with it. The way to do that varies depending on the phone. Here‘s how the process works with a Bria Solo softphone.
Create an account using the Bria portal.
To configure a voice account, use the details of the Plivo SIP endpoint you created.
Download and install the softphone software. If you’re on Mac or Windows, download Bria Solo (formerly X-Lite). On Linux, download Blink. For this tutorial, we use Bria Solo.
Open the application and enable auto import voice account details to import the SIP account details and credentials.
Click on OK when you’re done.
Your endpoint entry in the list should show as Enabled, indicating that your SIP phone successfully registered with Plivo.
We have examples of a direct dial application written in multiple languages on GitHub that you can customize based on your needs.