diff --git a/ClockworkFramework.Core/Utilities.cs b/ClockworkFramework.Core/Utilities.cs index 46e19f9..4fe4170 100644 --- a/ClockworkFramework.Core/Utilities.cs +++ b/ClockworkFramework.Core/Utilities.cs @@ -44,7 +44,7 @@ public static void WriteToConsoleWithColor(object obj, ConsoleColor color) public static string ApiRequest(string url, HttpMethod method, Dictionary headers = null, Dictionary parameters = null, HttpContent content = null) { - return ApiRequest(new ApiRequestParams + var response = ApiRequest(new ApiRequestParams { Url = url, Method = method, @@ -52,9 +52,17 @@ public static string ApiRequest(string url, HttpMethod method, Dictionary