public void BindDialogflowKeys()
        {
            // Bind a Dialogflow key to the application.

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.BindDialogflowKeys(
                    1L,
                    "1"
                    ).Result;

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