We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Voicing in 6 digit numbers

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
zone24x7
Posts: 29
Joined: Fri May 19, 2006 7:50 am

Voicing in 6 digit numbers

Post by zone24x7 »

when we voice in options such as 1 and 2 the following segment works

<grammar type="application/x-jsgf">one | two</grammar>

but when we try to enter ( using voice recognition) where we cant define the digits like the above tags, (dynamic Voicing of digits) the system fails to understand the digits properly and says "i did not understand" is there are better way of Voicing in userid's which go beyond 5 digit numbers? please advice.

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR built-in grammar

Post by support »

Hi,

You should be able to use the built-in IVR grammar type "digits" to collect such information, making sure first that the IVR property, inputmodes, is set to "voice" (or "voice dtmf" if you want to allow keypad entry as well):


<field name="my_field" type="digits">
<property name="inputmodes" value="voice" />
<prompt>Please say your ID number</prompt>
<filled>
<!-- do something with the value -->
</filled>
</field>


Regards,

Plum Support

Post Reply