Cancel Scheduled Calls

My outbound calling software is designed to send all calls to the gateway via a queuing mechanism, which can pass more call requests to the gateway than lines, such that the gateway will process the calls in some defined sequence.

I want to include a capability to cancel any or all calls.

Will the callRemoveHandler.jsp will cancel any calls enqueued by the gateway? What is the behavior of calls in progress? Will they cancel immediately, or do they continue ?

Yes, callRemoveHandler is the one to use to remove scheduled calls. If a call is in progress, its record is locked and cannot be removed.

Posted in Developer |

Use Asterisk in VXML script

I am testing out my custom outbound VXML script and my dtmf element is failing when using and asterisk ‘*’. I have defined the element defined as such:

<dtmf>
0 | 1 | 2 | 3 | 4 | * | #
</dtmf>

the output.log reports: Encountered “*” at line 1, column 41. How can we use the asterisk key with dtmf?

The asterisk is a reserved character in the grammar definition. For literal meaning, you can quote it like:

<dtmf>
0 | 1 | 2 | 3 | 4 | ‘*’ | #
</dtmf>

This should work in your VXML script.

Posted in Developer |

Transfer call from agent to agent

DEAR VOICENT SUPPORT , PLEASE BE SO KIND TO ADVICE HOW TO TRANSFER THE CALL FROM REMOTE AGENT TO REMOTE AGENT OR ANOTHER TELEPHONE NUMBER, USING AGENT DIALER AND BBP.

Once a call is answered by an agent, he or she will see the screen popup. On the screen popup, there is a button called Dialpad, click the button to launch the dialpad. From there you can click the transfer button to transfer the call to another agent or another phone.

This agent to agent transfer feature is only available in release 8 and later. If you do not have release 8, you can download the software and give it a try.

Posted in Agent Dialer, Auto Dialer |