Hi,
I am trying to create virtual queue using Genesys SDK.
The code I’m trying something like below; I don’t have the exact code.
(Please ignore syntax errors as this is written in notepad)
public void createVQ(string number)
{
//server parameters
confService.open();
CfgSwitchQuery cfgSwitch = new CfgSwitchQuery();
cfgSwitch.Name=“my_vq_switch”;
CfgSwitch switchName = confService.RetrieveObject(cfgSwitch);
CfgDN vq=new CfgDN(Number=number, Switch=switchName);
vq.Type=CfgDNType.CFGVirtACDQueue;
vq.Save();
}
I am getting parameter missing error from line vq.Save();
Could anyone tell me what are the issue with the above code and what all are the mandatory parameters I need to pass while creating create a virtual queue.
Thanks,
Sudipta