using System.Collections.Generic;
public static void Main()
'datesubmitted':'2015-01-12 10:43:47',
'[variable(\'STANDARD_IP\')]':'127.0.0.1',
'[variable(\'STANDARD_GEOCOUNTRY\')]':'United States'
var obj = JsonConvert.DeserializeObject<RootObject>(json);
Console.WriteLine("result_ok: " + obj.result_ok);
Console.WriteLine("total_count: " + obj.total_count);
foreach (Response r in obj.data)
Console.WriteLine("id: " + r.id);
Console.WriteLine("status: " + r.status);
Console.WriteLine("datesubmitted: " + r.datesubmitted);
foreach (var kvp in r.fields)
Console.WriteLine(kvp.Key + ": " + kvp.Value);
public bool result_ok { get; set; }
public string total_count { get; set; }
public List<Response> data { get; set; }
public string id { get; set; }
public string status { get; set; }
public string datesubmitted { get; set; }
public Dictionary<string, object> fields { get; set; }