Page 1 of 1

Interdigittimeout value

Posted: Tue Feb 02, 2010 2:23 pm
by w2gi
Hi,
I am using "interdigittimeout" property to give 3 sec input time between each input. I set the grammer to be 5 digits. Is it possible to, not wait for any input when caller entered 5 digits?

Code: Select all

<property name="interdigittimeout" value="3s" />

IVR Property: termmaxdigits

Posted: Wed Feb 03, 2010 10:32 am
by support
Hi,

You would be able to achieve this by using the IVR property, termmaxdigits. This would be declared the same time you declare the interdigittimeout property.

Code: Select all

<property name="termmaxdigits" value="true"/>
This IVR property will end your IVR grammar input once you have entered five digits. Once the maximum number of digits have been entered, the IVR application will move on without waiting for any timeouts.

Hope this helps.

Regards,
Plum Support

Posted: Wed Feb 03, 2010 12:47 pm
by w2gi
thank you