コード例 #1
0
        public void DelSubUser()
        {
            // Delete the subuser with id = 12 from account_id = 1

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.DelSubUser(
                    12L
                    ).Result;

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