" /> Import Wizard : create and Add Agent to Access Group -- SOLVED - Genesys CTI User Forum

Author Topic: Import Wizard : create and Add Agent to Access Group -- SOLVED  (Read 2659 times)

Offline Marco64

  • Newbie
  • *
  • Posts: 22
  • Karma: -1
Advertisement
Hi all
need help in completing the following XML for create Agent and associations in ConfigServer with the Import Wizard.

I have this XML sample that works well:

<?xml version="1.0"?>
<CfgData version="7.6.000.20">
<CfgReference>
<CfgTenantRef id="Resources" DBID="101" />
<CfgAccessGroupRef id="103" name="Users" />
<CfgFolderRef folderDBID="105" id="Agents" DBID="250" xmlns="http://www.genesyslab.com/cs"/>
<CfgAgentLoginRef id="273" name="700111"/>
</CfgReference>
<CfgCreate>
<CfgAgent id="theAgentID" name="testName" firstName="AgentXY" lastName="AgentZZ" employeeID="12345" state="1" folderDBID="250" isAgent="2" ownerDBID="101">
<agentLogins>
<CfgAgentLoginInfo linkDBID="273" />
</agentLogins>
<appRanks>
<CfgPersonRank appType="18" appRank="1"/>
</appRanks>
</CfgAgent>
</CfgCreate>
</CfgData>

It creates the Person/Agent in the folder 250 , add a rank (Desktop Agent) and the AgentLogin 273.

Can someone kindly help in adding this Agent to AccessGroup Users? I have add it's reference as <CfgAccessGroupRef id="103" name="Users" /> but cannot figure out how to add the user to it. I'm slowing down on this step and any help will be appreciated.

Marco 
« Last Edit: April 03, 2012, 09:29:39 AM by Marco64 »

Offline Marco64

  • Newbie
  • *
  • Posts: 22
  • Karma: -1
Re: Import Wizard : create and Add Agent to Access Group -- SOLVED
« Reply #1 on: April 03, 2012, 09:33:24 AM »
Finally I come out with adding section "security" in ConfigServer options.

I then switch the value of "no-default-access" from "1" to "0" when I need or do not need to automatically insert the newly created Person in "default"  access group users.

All the rest is the same.

Marco