Exemplo n.º 1
0
        public void DelPushCredential()
        {
            // Remove credentials.

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.DelPushCredential(
                    1L
                    ).Result;

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