Following is code that I used to transfer call to human.
But it doesn't work. And when it read number using <say-as> tag, it read number wrongly. For instance, after saying "3", it speaks "period" and then "2". And call is not transferring.
Why it is happening? I'm using developer account, can't we have facility to transfer call using developer account.
<form id="support">
<transfer dest="3212060590">
<prompt>
Transferring to
<say-as type="acronym">
<value expr="3212060590" />
</say-as>
</prompt>
</transfer>
</form>
We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics
Transfer call problems
-
- Posts: 8
- Joined: Fri Sep 05, 2008 2:22 am
- Contact:
IVR code for transfer calls
Hi,
You should remove the IVR tag, <value>, from your IVR code since you are not using a variable within it.
Instead, your IVR code should be edited to this:
Here is an IVR example of when you would want to use the <value expr = >:
Hope this helps.
Regards,
Plum Support
You should remove the IVR tag, <value>, from your IVR code since you are not using a variable within it.
Instead, your IVR code should be edited to this:
Code: Select all
<form id="support">
<transfer dest="3212060590">
<prompt>
Transferring to
<say-as type="acronym">
3212060590
</say-as>
</prompt>
</transfer>
</form>
</vxml>
Code: Select all
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="targetnumber" type="digits">
<prompt>
What phone number would you like to dial?
</prompt>
</field>
<transfer destexpr="targetnumber">
<prompt>
Transferring to
<say-as type="acronym">
<value expr="targetnumber"/>
</say-as>.
</prompt>
</transfer>
</form>
</vxml>
Regards,
Plum Support
Plum Support
http://www.plumvoice.com
http://www.plumvoice.com