" /> Multi-line telephony - Genesys CTI User Forum

Author Topic: Multi-line telephony  (Read 2064 times)

Offline Alyw

  • Newbie
  • *
  • Posts: 20
  • Karma: 0
Multi-line telephony
« on: July 13, 2015, 01:19:41 AM »
Advertisement
I'm currently developing a agent desktop using PSDK 8.5. I've an old version of agent desktop (or softphone) which was intergrated with Genesys ActiveX Desktop Toolkit. There were three line buttons in the old version and I found that the buttons are the components inherited from the ActiveX Desktop Toolkit. So, with the use of pSDK 8.5, how can I configure the line number in my agent desktop? I want to do exactly the same as the old version, which had three line buttons.

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Multi-line telephony
« Reply #1 on: July 13, 2015, 03:02:51 AM »
Same, you monitor 3 DNs...just that, means 3 instances of Extension object

Offline Alyw

  • Newbie
  • *
  • Posts: 20
  • Karma: 0
Re: Multi-line telephony
« Reply #2 on: July 13, 2015, 03:36:13 AM »
So for example, if I make an outbound call using line 2, when I send the RequestMakeCall, is it the way to send the request:
KeyValueCollection lineNum = new KeyValueCollection();
lineNum.Add("ext", "2");
RequestMakeCall reqMakeCall = RequestMakeCall.Create(thisDN, callNum, MakeCallType.Regular, null, null, null, lineNum);