Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Internal routing based on originating DN

Status
Not open for further replies.

Jay2003

Programmer
Feb 26, 2003
147
GB
Hi,

Is it possible to route a call based on the originating DN.

DN 4001 calls CDN 1000. This call terminates at skillset a.

DN 5001 calls CDN 1000. This call terminates at skillset b.

Thanks for any feedback.

Jason.

 
Yo can route calls by using the CLID. This can therefopre be used for both internal and external calls.


A simple script could be based around.


Script Variables:
callsA CV CLID type set 1234 1235 1236
CallsB CV CLID type set 2345 2346 2347

In the script have something along the lines

if CLID = callsA then
QUEUE TO SKILLSET skill1
else
if CLID - callsB then
QUEUE TO SKILLSET skill2
end if

Note. This is example script, I do not confirm accuracy of syntax as I am doing this quickly.

Paul DS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top