public void BindPushCredential()
        {
            // Bind the push credential to the application.

            try {
                var voximplant = new VoximplantAPI();

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

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