Instead of Cyrillic characters, I get \u4430\u0446 . Json.NET type libraries do not connect to my CRM system. So you need to somehow do this with standard decoders. How to decode using standard C # tools?
Here is a sample code:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("url"); request.Method = "GET"; request.Accept = "application/json"; WebResponse resp = request.GetResponse(); Stream stream = resp.GetResponseStream(); StreamReader rdr = new StreamReader(stream); string str = rdr.ReadToEnd(); Console.WriteLine(str); Thanks for answers!