- Joined
- Apr 7, 2009
- Messages
- 2
- Reaction score
- 0
Hello,
I have downloaded the sample .net API, and got the code to work (once I figured out how to connect to the 3CS server...).
I can now query the available information in the PBX, but I am looking for a way to, programattically, add members to huntgroups, create huntgroups, create digital assistents etc. I think that maybe the lack of documentation is what's getting to me, but could someone point me in the right direction here?
For reference, I have added the following code to the sample program:
I can get at the information okay, with code like the following:
Hope you can help,
Best regards,
//Ton
I have downloaded the sample .net API, and got the code to work (once I figured out how to connect to the 3CS server...).
I can now query the available information in the PBX, but I am looking for a way to, programattically, add members to huntgroups, create huntgroups, create digital assistents etc. I think that maybe the lack of documentation is what's getting to me, but could someone point me in the right direction here?
For reference, I have added the following code to the sample program:
Code:
TCX.Configuration.PhoneSystem.Root.Host = "127.0.0.1";
TCX.Configuration.PhoneSystem.Root.Port = 5485;
TCX.Configuration.PhoneSystem.Root.Username = "admin";
TCX.Configuration.PhoneSystem.Root.Password = "*****";
TCX.Configuration.PhoneSystem.Root.Connect();
I can get at the information okay, with code like the following:
Code:
TCX.Configuration.RingGroup[] theGroups;
theGroups = TCX.Configuration.PhoneSystem.Root.GetRingGroups();
MessageBox.Show(theGroups[0].Name);
MessageBox.Show(theGroups[0].Members[0].Number);
Hope you can help,
Best regards,
//Ton