Exemplo n.º 1
0
        public void BindSkill()
        {
            // Bind the skills 1, 5 to the users 5, 6, 10.

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.BindSkill(
                    skillId: "1;3",
                    userId: "5;6;10"
                    ).Result;

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