Content

Page tree

Hot Dial is a feature where the user lifts up the handset (offhook) and the phone automatically initiates a call to a predetermined number, e.g. in airport lobbies, emergency calls or in similar single scenario situations. There are two different approaches how this can be achieved. 

Configuration via Auto Dial Setting

The setting auto_dial and auto_dial_target allow for a scenario where once the user either lifts the handset or presses any line or number key, a predetermined number is dialed immediately without delay. The following values have to be set:


// Any value smaller or equal to 2 will trigger a Hot Dial if auto_dial_taregt is set. Any value larger than 3 will switch the behavior to Warm Dial
<auto_dial perm="">1</auto_dial>


// A target has to be set otherwise the regular auto dial behavior will trigger
<auto_dial_target perm="">123456789</auto_dial_target>




Configuration via Action URL

Hot Dial can also be achieved by using an Action URL. However this approach limits the Hot Dial behavior to the Offhook event while the auto dial setting approach triggers on several more events.

The outgoing call is triggered using the phone's Action URL on offhook. (Action URLs are HTTP GET requests that are issued when a specific event occurs on the phone.)

<action_offhook_url perm="">http://<yourphoneip>/command.htm?number=123456789</action_offhook_url>


You need to set the actual IP address of the phone and your destination number and once the phone goes offhook the ACTION URL is triggered.