" /> Targeting a chat agent when that agent is in a not ready state (Solution) - Genesys CTI User Forum

Author Topic: Targeting a chat agent when that agent is in a not ready state (Solution)  (Read 2160 times)

Offline MarkComplete

  • Newbie
  • *
  • Posts: 15
  • Karma: -1
Advertisement
I don't know how often this comes up for multimedia, but it was a business requirement that we received recently and had some difficulty getting it working so I though I would share the solution in case others had the same issue.

First update the Extension that Interaction Server uses to set the route type

[b]ExtensionUpdate['{d}WFROUTETYPE','2'][/b]

Next, format the target information in a variable.

[b]var_target='return:ok|agent:<EmployeeID>|route_type:6'[/b]

Then use RouteCall to target the agent.

[b]RouteCall[var_target][/b]


If for some reason you want to target an agent place instead of their employee ID you can set the WFROUTETYPE to 3 and change the target string to var_target='return:ok|place:<valid place>|route_type:6'

I haven't really used the place option so I haven't tested but it should work.

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2755
  • Karma: 44
Re: Targeting a chat agent when that agent is in a not ready state (Solution)
« Reply #1 on: February 01, 2013, 11:28:29 AM »
It is nice that you share it,but my opinion is ,the routing on not-ready agent is not logical and no reasons play for it.

Offline MarkComplete

  • Newbie
  • *
  • Posts: 15
  • Karma: -1
Re: Targeting a chat agent when that agent is in a not ready state (Solution)
« Reply #2 on: February 01, 2013, 05:25:16 PM »
Kubig,

While I agree with you in a strictly theoretical sense and attempted to convince the requirement providers that this was unnecessary, the requirement remained. So we figured out how to do it and thought I would share.