Share This Post:

Different call message for different call

I called earlier, spoke to someone very nice, and need a definitive answer to a capability of Voicent software before I move forward. I know your software is intended to broadcast the same message to hundreds or thousands of people. I also know you can change the outgoing message with dynamic auto-fill “inserted” information such as name, etc. What I’d like to know, and with absolute certainty, is if I can have each person recieve a call with a completely unique set of questions, so say if I have 700 people to call, it would go through the list, one by one, asking every person a completely different set of questions, and fielding a completely different set of voice and/or touch tone responses. So I’d put together a database of people, and an equal number of “question sets” (or surveys), then I simply assign the appropriate code for that unique survey, next to that person on the outgoing call database? I’d need to be able to change any one of the “question sets” easily and often. Would you say your software is a good fit for my application, or would you recommend another?

In order to do that, you need:

1. A system that is capable of specifying call message and user interaction for each call

This is what Voicent software products are designed for. There are two levels of integration here: one is at the application level, and the other is at the gateway level. The application level is relatively easy to use and all can be accomplished using the Graphical User Interface (GUI). The gateway level offers the ultimate flexibility, but requires some developer knowledge. For application level, such as using BroadcastByPhone and IVR Studio, you can do “fill-in” values. You could also switch to a different message (different set of survey quesitons) if the message is pre-designed. However, it won’t be able to dynamically create these messages.

To do what you specified, you need to use the gateway interface. With the gateway interface, the call message and interactions are specified in VoiceXML files. These files could be dynamically generated by your application before a call is made. To learn more, please see the developer section on Voicent’s website.

2. You need your own application to create the call message that is specified in VoiceXML file. This is outside the scope of Voicent program. In general, you do the following in your application:

2.1 Find the next person in your database to call
2.2 Based on the person’s profile, generate a set of VoiceXML files for the call interactions
2.3 Send a call request to Voicent Gateway. Within the call request, specify the phone number to call, the VoiceXML files to use, and other info

I can grasp the application level to your response, but am unclear as to the Gateway level, but am not sure the gateway level is needed, as nothing is dynamically created. I should have noted that while each contact has a different “question set” they are predetermined and would be created before each broadcast notification, not dynamically. Each person would just have their own set of questions, and I would need to manually change them from time to time based on information obtained outside Voicent, but I’ll always be able to make the individual’s changes ahead of time, prior to the next broadcast. I don’t think the “fill in” values will do it given the entire question changes. It’s about creating and assigning a unique set of questions for each individual in a broadcast database, and just being able to edit them from time to time. One person, one set of questions (push tone or yes/no answers are adequate). Maybe it’s more about scheduling a “call plan” for each individual with his/her survey, then scheduling calls to that person with those questions on a regular basis, but having the system going through all the scheduled calls for that day? (ie. Say I want to ask for a response from one person on a daily basis to make sure they’ve shut the oven off, cleaned the exhaust system, closed the gas valve, and then ask the next person if they’ve locked the door, set the temperature to 50 degrees, turned the alarm on, etc.) Does this clarify or change your answer in any way, or would it still require software development? Thanks again for all your help

That should simplify the application a lot and you should be able to do it with application level interface.

Here is one way to implement this. Let’s assume you have 3 sets of survey questions that are labeled as A, B, and C.

1. From BroadcastByPhone call list, create a new column ‘survey’ to specify the survey set.
2. Before broadcast, set the correct values for the survey column manually
3. Create an application using IVR Studio.

Under the top node/element of IVR Studio, create three child elements for A, B, and C. Under each child element A, B, and C, create the corresponding survey questions as usual.

Create a transition condition for each child node A, B, and C. Use the value from the ‘survey’ column for the condition expression, such as survey == ‘A’, so it evaluates to true when the corresponding column is set to A. Do the same for B, and C.

4. Deploy the application and start the broadcast using the newly designed IVR application.

Share This Post:

This entry was posted in IVR Developer, IVR Usage. Bookmark the permalink.