Skip to main content

IVR for Group buying and Deals sites using KooKoo

Using KooKoo, group buying sites can build simple telephony applications opening up another channel to reach their customers. We can have an application which does the following:

1. When users call, if it is a first time caller, ask the user to select his preferences and link his phone number on the website (which is anyway being done in most group buying websites)
2. The next time the user calls, fetch his preferences from the database and play back the deal to him in his preferred language.
3. If necessary, you can connect the caller to the business directly or process payment over the IVR system.

The advantages with this approach are:
1. No more spam as callers call to know the deals
2. Play back the deals in multiple languages.
3. Reach more customers.

This can be achieved in 10 lines of code as shown below.


<?php

require_once('response.php');// this is kookoo library. You can download it from KooKoo website.

$r= new Response();

if($_REQUEST['event'] == 'NewCall')
{
//get the phone number of the person who called
$caller_id=$_REQUEST['cid'];
//get the deals for the categories chosen by the caller.getDealForCustomer is the function
//which gets details from your database.
$deal=getDealForCustomer($caller_id);
//playback the deals and hangup
$r->addPlayText('Your deals are '.$deal);
$r->addHangup();
$r->send();
}

?>

If you want you can extend the above code to include payment processing, allow a user to modify preferences etc. Since the code and the business logic reside on your server, you can customize it as you see fit.


Popular posts from this blog

Google's approach to business communication

 Google has been making silent moves in the business communication space. Google has mostly lost the instant messaging wars. But it does not want to lose the business communication war. WhatsApp, Instagram, Twitter and Facebook have been making their own moves to enable businesses to reach their customers through their channels. Its all about who has control over the communication channels. Especially communication which leads to business. That's where the money is. Currently, Google is the king of search and most online transactions start with a Google search. FB, Amazon, Apple and others want to change that. They want the search to start on their properties. And they have started making the moves. WhatsApp business allows small businesses to conduct their transactions on WhatsApp. FB and Instagram have long supported small businesses to manage their business on their channels. Apple has also made some nice moves with Apple business chat. They have integrated a whole shopping expe...

Telugu ASR speech data collection

Image Source: IIIT-H Developing an indigenous ASR for Indian languages has been a goal for us since a long time. In that regard we have been experimenting a lot, trying out various neural network architectures.  While doing these experiments we found that there was no good dataset for Indian languages. While discussing with IIIT professors we got to know that the government of India was also exploring options to generate a good dataset. We immediately offered our help and our platform for this endeavor. So, as a starting step we have come up with a few campaigns to encourage users to donate speech data. We wanted to make it fun, so our first few campaigns are along the lines of JAMs(Just a Minute speech topics) etc. A topic will be provided and you need to speak for a minute on that topic. We have started this campaign for college students to start with. Of course anyone can participate and contribute their data. The more the merrier :) We will adding a lot more innovative ways ut...

Ozonetel. Take 2, The Text Edition

Ever since we introduced cloud telephony to India in 2009, Ozonetel has always been known as the go to startup for cloud telephony requirements like cloud call centers and virtual numbers. Voice has been our mainstay for a long time and it will continue to be so in the future too. But starting this month, we at Ozonetel have decided to have an increased focus on text based communication channels in addition to voice channels. It's not that we did not support these channels earlier. We already supported, chat and some email functionality. But it has been in bits and pieces only. But starting this month text channels, including email, chat and social media will become First Class Citizens in our stack. They will get the same love that our voice channels get. Unsplash           To achieve this we have planned several upgrades to our platform which will unfold over the coming weeks. Here is a sneak peak of what we are planning. Built in Contact Manager: This has bee...