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
ExtensionUpdate[‘{d}WFROUTETYPE’,‘2’]
Next, format the target information in a variable.
var_target=‘return:ok|agent:|route_type:6’
Then use RouteCall to target the agent.
RouteCall[var_target]
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:|route_type:6’
I haven’t really used the place option so I haven’t tested but it should work.