I am trying to develop an application in MVC4 where client can configure Dynamic menu for Incoming Calls from user Interface using Twilio API. Is there any opensource project exist or any voice model for dynamic IVR menu from where i can get an idea and application flow for GUI design. Your help in this regard will be highly appreciated.
Asked
Active
Viewed 978 times
1 Answers
1
Twilio developer evangelist here.
To my knowledge there isn't a .Net project that demonstrates how to build an IVR using Twilio. however, there are a few tutorials showing how to do it, and because most of it uses TwiMl, you should just be able to generate that using the libraries, or by simply making your requests return such verbs when necessary.
I would definitely stat off by looking at the following:
- Project: Build a Simple IVR The example is in PHP, but you should very easily be able to translate that into C#
- IVR: The Basics A good resource that tells you how IVR's actually work
- Build an IVR system with Twilio and Django Another tutorial showing how to build an IVR using Django
With the URLs above you should be ale to get your IVR up and running in no time, but by all means feel free to reach out to me if you need any help. I'm a C# developer myself, so will be able to assist you if you get stuck with anything.

Marcos Placona
- 21,468
- 11
- 68
- 93
-
Thanks for your detailed answer. This helped me alot. I am more concerned now about screen design for IVR menu.How to design multi level menu screen for IVR. – Abdullah Farid Apr 02 '15 at 09:51
-
I think that will depend quite a lot on your needs. Do you have any specs? – Marcos Placona Apr 02 '15 at 11:50