DEV Community

Cover image for How to run automated telephone conversations through a telephony vendor
Arthur Grishkevich
Arthur Grishkevich

Posted on

How to run automated telephone conversations through a telephony vendor

Why use your own telephony for your Dasha apps

The goal of any development is to deliver some type of business value. In the case of Dasha conversational AI apps, the business value that our customers pursue varies. Yet in over 95% of cases today, it is delivered through the telephone channel. In that sense, most of our customers in production use Dasha to automate some part of their telephone communications with customers.

Most of these companies have a telephony vendor. Connecting the Dasha application to their existing telephony means that Dasha can seamlessly transfer calls to a live agent, if such a need arises. It also means that Dasha can make phone calls from phone numbers reserved for this company, and answer inbound phone calls which are directed to the company phone number.

In this tutorial we will go over connecting Dasha for both inbound and outbound telephone communication using Voximplant.

How to use Dasha with a third party telephony vendor?

First, you need to know if your vendor supports SIP Trunk connections. Here is a simple decision tree flowchart to help you navigate:

Decision making flowchart

To give you an idea of how the integration happens, read below for instructions to integrate Dasha with the telephony vendor Voximplant via a SIP Trunk connection.

Preparatory actions on the Dasha side

Make sure you have node.js version 13+ and npm installed. You will also want the latest version of Visual Studio Code running to edit and test the Dasha app.

  1. Join Dasha Community - you will get your API key here automatically
  2. Open VSCode and install the Dasha Studio Extension from the extension store. You’ll get all the DSL syntax highlighting and a GUI interface for debugging your conversation flow.
  3. Run npm i -g "@dasha.ai/cli@latest" to install the latest Dasha CLI.

You’ll want to load up a Dasha conversational AI app. For the purposes of this tutorial, you may want to load up either the inbound tester app for inbound calls. Or the outbound tester app for outbound calls.

Setting things up on the side of Voximplant (telephony vendor)

  1. Login to your Voximplant account or create an account if you don’t have one.
  2. Create a Voximplant application.
  3. Purchase a Voximplant phone number in the Numbers section of the control panel and attach it to the app. This number will be used as callerid.
  4. Go to your applications, click on the app you had created. Click on Numbers > Available and "attach". This number will be used as callerid.

Voximplant dashboard

For Outbound calls:

Go to Scenarios > Create Scenario, name the Scenario and hit the “plus” sign. You will need to paste the code below in the scenario.

    const callerid = 'number_you_bought'
    VoxEngine.addEventListener(AppEvents.CallAlerting,(e) => {
        Logger.write('a call from ' + e.callerid);
    // an inbound SIP call from Dasha (the first call leg)
        const inc = e.call;
    // an outbound call to PSTN (the second call leg)
        const out = VoxEngine.callPSTN(e.destination, callerid);
        out.addEventListener(CallEvents.Connected, () => {
    // answering the call
            inc.answer();
        })
        // adding default event listeners to pass signaling information between two calls
        VoxEngine.easyProcess(out, inc);
    })
Enter fullscreen mode Exit fullscreen mode

This scenario be run from the Dasha integration. On an incoming SIP call from Dasha, the phone number which we want to call is passed to the callPSTN method. This is how we connect two calls. Once the call is answered, Dasha will start the conversation. If you want to handle inbound calls to SIP, use your SIP URI as callerid and replace the callPSTN method with callSIP. If you are using SIP Registrations on your PBX, you need to create a SIP Registration and use it instead of the SIP URI.

Next,go to the Users section and create a new user. Remember the username and password, they will be used for Dasha's config in the next step.

Now, click on Routing in the left hand menu. Create a new rule (leave the pattern as default), and attach your scenario to this rule.

Create new rule in Voximplant dashboard

Now, Connect your sip trunk with Dasha's using this command:

dasha sip create-outbound --server <ip_or_dns_of_server:port> [--domain <domain_name>] [--ask-password] --account <accountName> --transport [tcp|udp] <config_name>
Enter fullscreen mode Exit fullscreen mode
  • accountName is the username you created in the Voximplant panel;
  • ip_or_dns_of_server:port is the name of our Voximplant app;
  • config_name is the name of the config we’ll use in the next step.

For example:

dasha sip create-outbound --server exampleApp.exampleAcc.n4.voximplant.com --account exampleUsername --ask-password vox_outbound
password: enter_your_password_here
Enter fullscreen mode Exit fullscreen mode

For Inbound calls:

Connect your sip trunk with Dasha's using this command:

dasha sip create-inbound --application-name <your_app_name> <config_name>
Enter fullscreen mode Exit fullscreen mode
  • your_app_name is your Voximplant application name;
  • config_name is the name of the config we’ll use later.

For example:

dasha sip create-inbound --application-name exampleApp vox_inbound
Enter fullscreen mode Exit fullscreen mode

This command will give us a Dasha’s SIP URI to call. For example: sip:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx@sip.us.dasha.ai

To see the URI, write: dasha sip list-inbound.
Let’s put it in our Voximplant scenario instead of "your_SIP_URI".

Create a scenario inside the app by pressing a plus icon and paste this code in there:

    // SIP URI that we get in the next step
    const sipURI = <your_SIP_URI>;
    VoxEngine.addEventListener(AppEvents.CallAlerting, (e) => {
      const call = e.call;
      call.addEventListener(CallEvents.Connected, () => {
        const callToDasha = VoxEngine.callSIP(sipURI);
        VoxEngine.easyProcess(call, callToDasha);
      });
      call.answer();
    });
Enter fullscreen mode Exit fullscreen mode

This is the scenario that will be run when we set everything up. We use the callSIP method to make a call to our SIP URI. On an incoming SIP call from Voximplant, the SIP URI that we want to call is passed to the callSIP method. This is how we connect two call legs. Once the call is answered, Dasha will start a conversation.

If you are using SIP Registrations on your PBX, you need to create a SIP Registration and use it instead of the SIP URI.

Click on Routing in the left hand menu. Create a new rule (leave the pattern as default), and attach your scenario to this rule.

Create new rule in Voximplant dashboard

Get your backend in order and start calling

The setup is ready, now we need a local app or backend to run our Voximplant scenario using Dasha.

Placing outbound calls:

Open your VS Code Dasha conversational AI app project. Open up index.js file and replace configName in dasha.sip.Endpoint with your config name. Do the same with the name field in package.json. To see all the available configs for sip outbound, run the dasha sip list-outbound command.

In the *.dashaapp file, change the name field so it matches our config name.

For outbound calls, run: node index.js <the number to call in international format e.g. 12223334455>. Now you can watch the application deployment and registration process in the console.

Taking inbound calls:

  1. Open up your VS Code with the Dasha project open.
  2. In the package.json file, replace the name field with your config name. To see all the available configs for sip inbound, run the dasha sip list-inbound command. In the inbound.dashaapp file, change the name field so that it matches your config name.

To test the integration, run npm i from your folder.

For inbound calls, run: node main.js. Now you can call to the phone number which you purchased in Voximplant’s dashboard.

You’ll be able to track application deployment in the console.

In conclusion

Congrats, you’ve successfully connected your Dasha conversational AI app to your custom telephony. This is exciting. You can now call anyone in the world.
If you haven’t yet, you can join Dasha community and let us know how useful this was to you. If you want a super quick answer - ask your questions on StackOverflow, using the #dasha hashtag.

Oldest comments (0)