예제 #1
0
        public void AddQueue()
        {
            // Add a new ACD queue for the application 1.

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.AddQueue(
                    "myqueue",
                    applicationId: 1L
                    ).Result;

                Console.WriteLine($"Response: {result.ToString()}");
            } catch (Exception e) {
                Console.WriteLine($"Error: {e.Message}");
            }
        }