CTI

From Taridium

Revision as of 16:59, 30 December 2009 by Webmaster (Talk | contribs)
Jump to: navigation, search

This optional ipbx module is installed under Advanced SetupModules. Registered modules are displayed with registered module. The CTI module has been made available in ipbx 2.0.6 and higher versions.

ipbx's CTI module provides a standardized way to interact with incoming calls using external applications. Applications include, web driven pop-up windows and call manipulation.

Contents

CTI Configuration

The CTI configuration can be accessed Advanced SetupCTI. Basic CTI configuration allows you to specify an URL which will be loaded into the End User Panel CTI window as soon as a call is routed to a user.

CTI Control

The CTI control option is available in the IVR, Groups and Queues applications. The CTI control options can be accessed in each of the application editors by clicking on CTI Controlconfigure options. In it's simplest form the CTI control allows you to signal that a call was routed to an application, usually passing along some identifying information such as the caller ID.

Example URL

 http://192.168.77.123/myctitest.html?calleridnumber=%%calleridnumber%%&calleridname=%%calleridname%%

In the above situation an incoming call would cause the URL to be called and the variables %%calleridnumber%% and %%calleridname%% to be replaced with the actual information.

CTI XML Format

When a CTI URL is called by ipbx it is parsed for a valid XML reply. This XML reply may contain instruction on how to handle the call BEFORE it is handled by the application. The XML code could for example instruct ipbx to route a call to a different application, based on the caller ID or other information, or it can update the caller ID fields or account code.

Example Code 1

This example changes the caller ID name field based on some data stored in an external application and sets the correct account code.

 <?xml version=\"1.0\" encoding=\"UTF-8\" ?>
 <ipbx>
 	<cti>
 		<call>
 			<set>
 				<calleridname>ACME Inc OVRDUE</calleridname>
 				<accountcode>knownaccount</accountcode>
 			</set>
 		</call>
 	</cti>
 </ipbx>

The <set> tag can contain any of the following sub-tags:

Example Code 2

This example re-routes the call to another extension. This could for example be an overflow call answering service or any other application within ipbx.

 <?xml version=\"1.0\" encoding=\"UTF-8\" ?>
 <ipbx>
 	<cti>
 		<call>
 			<route>
 				<type>extension</type>
 				<name>18005554444</name>
 			</route>
 		</call>
 	</cti>
 </ipbx>

The <type> tag can contain any of the following keywords:

The <name> tag must contain a valid application/function name.


CTI URL Variables

The following variables can be used in any of the CTI URLs and will be replaced with the according values. Some values might not be available in certain situations.

Personal tools
Namespaces
Variants
Actions
Toolbox