public void DelDialogflowKey()
        {
            // Remove key.

            try {
                var voximplant = new VoximplantAPI();

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

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