Exemplo n.º 1
0
        public void AddAuthorizedAccountIP()
        {
            // Add the 92.255.220.0/24 network to the white list.

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.AddAuthorizedAccountIP(
                    "92.255.220.0/24"
                    ).Result;

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