in Outbound call is it possible to transfer call to another
Posted: Wed Nov 02, 2005 8:33 pm
in Outbound call is it possible to transfer call to another number based on the user chioce. But it si giving error saying transfer tag not allowed.
the following code
<?xml version="1.0"?>
<vxml version="2.0">
<form id="test">
<block>
<prompt>
<audio src="welcome.wav">Welcome to Plum Voice Portals</audio>
</prompt>
<goto next="#mainmenu"/>
</block>
</form>
<menu id="mainmenu">
<prompt>
Press 2 To Repeat.
Press 3 To Reply.
</prompt>
<choice dtmf="2" next="#test">
To Repeat</choice>
<choice dtmf="3" next="#reply">
Reply </choice>
</menu>
<form id="reply">
<block>
<transfer dest="6587450177">
<prompt>
Please wait while calling the sender
</prompt>
</transfer>
</block>
</form>
</vxml>
the following code
<?xml version="1.0"?>
<vxml version="2.0">
<form id="test">
<block>
<prompt>
<audio src="welcome.wav">Welcome to Plum Voice Portals</audio>
</prompt>
<goto next="#mainmenu"/>
</block>
</form>
<menu id="mainmenu">
<prompt>
Press 2 To Repeat.
Press 3 To Reply.
</prompt>
<choice dtmf="2" next="#test">
To Repeat</choice>
<choice dtmf="3" next="#reply">
Reply </choice>
</menu>
<form id="reply">
<block>
<transfer dest="6587450177">
<prompt>
Please wait while calling the sender
</prompt>
</transfer>
</block>
</form>
</vxml>