Hey, so my code's web request isn't sending correctly as the JSON can't be read by the server.
Dictionary<string, string> header = new Dictionary<string, string> { { "Authorization", "Bearer " + apiKey } };
string bodyJson = Regex.Unescape("{ \"data\":[{ \"type\":\"identifier\",\"attributes\":{ \"type\":\"steamID\",\"identifier\":\"" + playerToKick.Id + "\"}}] }");
Log(bodyJson);
webrequest.Enqueue(apiCall + "/players/match", bodyJson, (code, res) =>
{
Log(code.ToString());
Log(res);
}, this, Core.Libraries.RequestMethod.POST, header, 200f);