Esempio n. 1
0
        public void DelApplication()
        {
            // Delete the application 1 and 3.

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.DelApplication(
                    applicationId: "1;3"
                    ).Result;

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