using System.Collections.Generic;
using System.Runtime.Serialization;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Serialization;
public class CampaignHistory
public long Id { get; set; }
public int Listid { get; set; }
[JsonProperty("listname")]
public string Listname { get; set; }
[JsonProperty("campaignname")]
public string Campaignname { get; set; }
public DateTime Sdate { get; set; }
public string Email { get; set; }
[JsonProperty("subscriberid")]
public int Subscriberid { get; set; }
public List<Read> Reads { get; set; }
public List<object> Links { get; set; }
[JsonProperty("forwards")]
public List<object> Forwards { get; set; }
public DateTimeOffset Tstamp { get; set; }
public string Email { get; set; }
public long Times { get; set; }
[JsonProperty("tstamp_settings")]
public string TstampSettings { get; set; }
public string Name { get; set; }
public string Value { get; set; }
[JsonProperty("isdefault")]
private string _isDefault { get; set; }
get { return _isDefault != "0"; }
set { _isDefault = value ? "1" : "0"; }
public class AutomationHistory
public string Name { get; set; }
[JsonProperty("adddate")]
public DateTimeOffset Adddate { get; set; }
public int Id { get; set; }
[JsonProperty("messages")]
public List<object> Messages { get; set; }
public int Id { get; set; }
public string Title { get; set; }
[JsonProperty("descript")]
public string Descript { get; set; }
public string Type { get; set; }
[JsonProperty("isrequired")]
public int Isrequired { get; set; }
[JsonProperty("perstag")]
public string Perstag { get; set; }
public string Defval { get; set; }
[JsonProperty("show_in_list")]
private string _ShowInList { get; set; }
get { return _ShowInList != "0"; }
set { _ShowInList = value ? "1" : "0"; }
public int Rows { get; set; }
public int Cols { get; set; }
[JsonProperty("visible")]
private string _visible { get; set; }
get { return _visible != "0"; }
set { _visible = value ? "1" : "0"; }
[JsonProperty("service")]
public string Service { get; set; }
[JsonProperty("ordernum")]
public int Ordernum { get; set; }
public string Cdate { get; set; }
public string Udate { get; set; }
public string Val { get; set; }
public int Relid { get; set; }
public int Dataid { get; set; }
[JsonProperty("element")]
public string Element { get; set; }
[JsonProperty("options")]
public List<Option> Options { get; set; }
[JsonProperty("selected")]
private string _selected { get; set; }
get { return _selected != "0"; }
set { _selected = value ? "1" : "0"; }
public string Tag { get; set; }
[JsonProperty("mailing")]
public List<object> Mailing { get; set; }
[JsonProperty("mailings")]
public int Mailings { get; set; }
[JsonProperty("responder")]
public List<object> Responder { get; set; }
[JsonProperty("responders")]
public int Responders { get; set; }
public string Id { get; set; }
public string Name { get; set; }
public DateTime CDate { get; set; }
[JsonProperty("private")]
private string PrivateAsString { get; set; }
get { return PrivateAsString != "0"; }
set { PrivateAsString = value ? "1" : "0"; }
public string UserId { get; set; }
[JsonProperty("subscriber_count")]
public int SubscriberCount { get; set; }
public class BasicContactInfo
[Newtonsoft.Json.JsonProperty("id")]
public int Id { get; set; }
[Newtonsoft.Json.JsonProperty("subscriberid")]
public int Subscriberid { get; set; }
[Newtonsoft.Json.JsonProperty("email")]
public string Email { get; set; }
[Newtonsoft.Json.JsonProperty("first_name")]
public string FirstName { get; set; }
[Newtonsoft.Json.JsonProperty("last_name")]
public string LastName { get; set; }
[Newtonsoft.Json.JsonProperty("last_list")]
public string LastList { get; set; }
[Newtonsoft.Json.JsonProperty("avatar_url")]
public string AvatarURL { get; set; }
[Newtonsoft.Json.JsonProperty("cdate")]
public DateTime CreatedOn { get; set; }
[Newtonsoft.Json.JsonProperty("sdate")]
public DateTime SubscribedOn { get; set; }
public class Contact : BasicContactInfo
public int Listid { get; set; }
public int Formid { get; set; }
[JsonProperty("seriesid")]
public int Seriesid { get; set; }
public DateTime Sdate { get; set; }
public DateTime Udate { get; set; }
public int Status { get; set; }
[JsonProperty("responder")]
public int Responder { get; set; }
public int Sync { get; set; }
[JsonProperty("unsubreason")]
public string Unsubreason { get; set; }
[JsonProperty("unsubcampaignid")]
public int Unsubcampaignid { get; set; }
[JsonProperty("unsubmessageid")]
public int Unsubmessageid { get; set; }
[JsonProperty("ip4_sub")]
public string Ip4Sub { get; set; }
[JsonProperty("sourceid")]
public int Sourceid { get; set; }
[JsonProperty("sourceid_autosync")]
public string SourceidAutosync { get; set; }
[JsonProperty("ip4_last")]
public string Ip4Last { get; set; }
[JsonProperty("ip4_unsub")]
public string Ip4Unsub { get; set; }
[JsonProperty("created_timestamp")]
public DateTime CreatedTimestamp { get; set; }
[JsonProperty("updated_timestamp")]
public DateTime? UpdatedTimestamp { get; set; }
[JsonProperty("created_by")]
public string CreatedBy { get; set; }
[JsonProperty("updated_by")]
public string UpdatedBy { get; set; }
[JsonProperty("listname")]
public string Listname { get; set; }
[JsonProperty("sdate_iso")]
public DateTime? SdateIso { get; set; }
public int Lid { get; set; }
public string Ip4 { get; set; }
[JsonProperty("a_unsub_date")]
public DateTime? AUnsubDate { get; set; }
[JsonProperty("a_unsub_time")]
public DateTime? AUnsubTime { get; set; }
public DateTime? Cdate { get; set; }
public string Phone { get; set; }
[JsonProperty("customer_acct_id")]
public int CustomerAcctId { get; set; }
[JsonProperty("customer_acct_name")]
public string CustomerAcctName { get; set; }
[JsonProperty("segmentio_id")]
public string SegmentioId { get; set; }
[JsonProperty("bounced_hard")]
public int BouncedHard { get; set; }
[JsonProperty("bounced_soft")]
public int BouncedSoft { get; set; }
[JsonProperty("bounced_date")]
private string _BouncedDate { get; set; }
public DateTime? BouncedDate { get { return (string.IsNullOrEmpty(_BouncedDate) || _BouncedDate.StartsWith("0000")) ? null : (DateTime?)Convert.ToDateTime(_BouncedDate); } }
public string Ip { get; set; }
public string Ua { get; set; }
public string Hash { get; set; }
[JsonProperty("socialdata_lastcheck")]
private string _SocialdataLastcheck { get; set; }
public DateTime? SocialdataLastcheck { get { return (string.IsNullOrEmpty(_SocialdataLastcheck) || _SocialdataLastcheck.StartsWith("0000")) ? null : (DateTime?)Convert.ToDateTime(_SocialdataLastcheck); } }
[JsonProperty("email_local")]
public string EmailLocal { get; set; }
[JsonProperty("email_domain")]
public string EmailDomain { get; set; }
[JsonProperty("sentcnt")]
public int Sentcnt { get; set; }
public int Rating { get; set; }
[JsonProperty("rating_tstamp")]
public string RatingTstamp { get; set; }
[JsonProperty("gravatar")]
public int Gravatar { get; set; }
[JsonProperty("deleted")]
private string _deleted { get; set; }
get { return _deleted != "0"; }
set { _deleted = value ? "1" : "0"; }
[JsonProperty("anonymized")]
public string _anonymized { get; set; }
get { return _anonymized != "0"; }
set { _anonymized = value ? "1" : "0"; }
public string Adate { get; set; }
public string Edate { get; set; }
[JsonProperty("deleted_at")]
public string DeletedAt { get; set; }
[JsonProperty("created_utc_timestamp")]
public string CreatedUtcTimestamp { get; set; }
[JsonProperty("updated_utc_timestamp")]
public string UpdatedUtcTimestamp { get; set; }
public string Name { get; set; }
public Dictionary<string,BasicList> Lists { get; set; }
[JsonProperty("listslist")]
public string Listslist { get; set; }
public Dictionary<string,Field> Fields { get; set; }
[JsonProperty("actions")]
public List<Action> Actions { get; set; }
[JsonProperty("automation_history")]
public List<AutomationHistory> AutomationHistory { get; set; }
[JsonProperty("campaign_history")]
public List<CampaignHistory> CampaignHistory { get; set; }
[JsonProperty("bounces")]
public Bounces Bounces { get; set; }
[JsonProperty("bouncescnt")]
public int Bouncescnt { get; set; }
public List<string> Tags { get; set; }
public int Orgid { get; set; }
[JsonProperty("orgname")]
public string Orgname { get; set; }
public Field GetField(int fieldId)
Field requestedField = null;
if(this.Fields != null && this.Fields.Count > 0)
requestedField = Fields[fieldId.ToString()];
public void SetField(int fieldId, string value)
if(this.Fields != null && this.Fields.Count > 0)
this.Fields[fieldId.ToString()].Val = value;
public static void Main()
""subscriberid"": ""5868"",
""sdate"": ""2017-06-23 17:00:00"",
""udate"": ""2019-11-13 18:33:07"",
""unsubcampaignid"": ""0"",
""unsubmessageid"": ""0"",
""first_name"": ""Manpreet"",
""last_name"": ""Singh"",
""ip4_sub"": ""2130706433"",
""sourceid_autosync"": ""0"",
""ip4_last"": ""1089056148"",
""created_timestamp"": ""2019-11-13 16:32:35"",
""updated_timestamp"": ""2019-11-13 18:33:07"",
""listname"": ""ArtsHub Australia"",
""sdate_iso"": ""2017-06-23T00:00:00-05:00"",
""cdate"": ""2019-08-07 19:34:40"",
""email"": ""msingh@artshub.com.au"",
""customer_acct_id"": ""0"",
""customer_acct_name"": """",
""bounced_date"": ""0000-00-00"",
""hash"": ""829723a3bd9d52150990ef3940556"",
""socialdata_lastcheck"": ""0000-00-00 00:00:00"",
""rating_tstamp"": ""2019-09-18"",
""adate"": ""2019-11-14 19:00:52"",
""edate"": ""0000-00-00 00:00:00"",
""deleted_at"": ""0000-00-00 00:00:00"",
""created_utc_timestamp"": ""2019-08-07 19:34:40"",
""updated_utc_timestamp"": ""2019-11-13 18:33:07"",
""name"": ""Manpreet Singh"",
""subscriberid"": ""5868"",
""sdate"": ""2017-06-23 17:00:00"",
""unsubcampaignid"": ""0"",
""unsubmessageid"": ""0"",
""first_name"": ""Manpreet"",
""last_name"": ""Singh"",
""ip4_sub"": ""2130706433"",
""sourceid_autosync"": ""0"",
""ip4_last"": ""1089056148"",
""created_timestamp"": ""2019-08-14 15:49:35"",
""updated_timestamp"": ""2019-09-18 20:54:38"",
""listname"": ""ArtsHub Australia"",
""sdate_iso"": ""2017-06-23T00:00:00-05:00""
""subscriberid"": ""5868"",
""sdate"": ""2014-04-08 17:00:00"",
""unsubcampaignid"": ""0"",
""unsubmessageid"": ""0"",
""first_name"": ""Manpreet"",
""last_name"": ""Singh"",
""sourceid_autosync"": ""0"",
""created_timestamp"": ""2019-08-16 01:49:33"",
""updated_timestamp"": ""2019-08-16 01:49:33"",
""listname"": ""Screenhub Australia"",
""sdate_iso"": ""2014-04-08T00:00:00-05:00""
""title"": ""Expiry Date"",
""perstag"": ""EXPIRY_DATE"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""tag"": ""%EXPIRY_DATE%""
""title"": ""Newsletter Preferences"",
""perstag"": ""NEWSLETTER_PREFERENCES"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 17:53:56"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""val"": ""||Jobs & Careers||Mid Week Update||Weekly Wrap||Spotlight||Special Offers||Kids Activities||"",
""element"": ""checkbox"",
""name"": ""Jobs & Careers"",
""value"": ""Jobs & Careers"",
""name"": ""Mid Week Update"",
""value"": ""Mid Week Update"",
""name"": ""Weekly Wrap"",
""value"": ""Weekly Wrap"",
""value"": ""Spotlight"",
""name"": ""Special Offers"",
""value"": ""Special Offers"",
""name"": ""Kids Activities"",
""value"": ""Kids Activities"",
""tag"": ""%NEWSLETTER_PREFERENCES%""
""title"": ""Product Code"",
""perstag"": ""PRODUCT_CODE"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""tag"": ""%PRODUCT_CODE%""
""title"": ""Marketing Collections"",
""perstag"": ""MARKETING_COLLECTIONS"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""tag"": ""%MARKETING_COLLECTIONS%""
""title"": ""Contact Rating"",
""perstag"": ""CUSTOMCONTACT_RATING"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""tag"": ""%CUSTOMCONTACT_RATING%""
""title"": ""SALES NOTES"",
""perstag"": ""SALES_NOTES"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""element"": ""textarea"",
""tag"": ""%SALES_NOTES%""
""perstag"": ""CONTACT"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""element"": ""checkbox"",
""name"": ""NO* SEE NOTES"",
""value"": ""NO* SEE NOTES"",
""perstag"": ""JOBLEAD"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""title"": ""Where from"",
""perstag"": ""WHERE_FROM"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""tag"": ""%WHERE_FROM%""
""perstag"": ""MEMTYPE"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""val"": ""Staff Other"",
""title"": ""Member String"",
""perstag"": ""MEMBER_STRING"",
""cdate"": ""0000-00-00 00:00:00"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""val"": ""ldcKEStJluf0qFqCPKPYc5W4p%2fGioxqO2PwFZirrYYgXvEsdSYI1wOkv3ZeaUmXIH7UsGLw%2b9WbUe%2bc99pZHG8ipWIjoXdmLOQUgjZ4%3d"",
""tag"": ""%MEMBER_STRING%""
""title"": ""Last email open"",
""perstag"": ""LAST_EMAIL_OPEN"",
""cdate"": ""2019-09-10 23:44:20"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""tag"": ""%LAST_EMAIL_OPEN%""
""title"": ""Last website visit"",
""perstag"": ""LAST_WEBSITE_VISIT"",
""cdate"": ""2019-09-10 23:44:28"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""tag"": ""%LAST_WEBSITE_VISIT%""
""perstag"": ""STATE_1"",
""cdate"": ""2019-11-13 17:39:44"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""name"": ""International"",
""value"": ""International"",
""name"": ""INTERNATIONAL"",
""value"": ""INTERNATIONAL"",
""title"": ""Your interests"",
""perstag"": ""YOUR_INTERESTS"",
""cdate"": ""2019-11-13 17:52:58"",
""udate"": ""2019-11-13 21:18:48"",
""created_timestamp"": ""2019-11-13 20:22:32"",
""updated_timestamp"": ""2019-11-13 20:22:32"",
""name"": ""Performing Arts"",
""value"": ""Performing Arts"",
""name"": ""Visual Arts"",
""value"": ""Visual Arts"",
""name"": ""Writing and Publishing"",
""value"": ""Writing and Publishing"",
""name"": ""Career Advice"",
""value"": ""Career Advice"",
""value"": ""Education"",
""name"": ""Arts Administration"",
""value"": ""Arts Administration"",
""name"": ""Literary Arts"",
""value"": ""Literary Arts"",
""name"": ""Job Advertising"",
""value"": ""Job Advertising"",
""name"": ""Event or Opportunity Advertising"",
""value"": ""Event or Opportunity Advertising"",
""tag"": ""%YOUR_INTERESTS%""
""text"": ""Sent Campaign - JOBS CLOSING Thursday 10 October 2019 (PAID)"",
""tstamp"": ""2019-10-09T18:32:59-05:00""
""text"": ""Sent Campaign - AHAU Jobs: AH Jobs members 7.10 - Paid"",
""tstamp"": ""2019-10-06T18:31:36-05:00""
""text"": ""Sent Campaign - JOBS CLOSING 3 OCTOBER (MEMBER)"",
""tstamp"": ""2019-10-03T04:18:36-05:00""
""text"": ""Sent Campaign - SPOTLIGHT Indigenous Multi 3 Oct 2019 Non-members"",
""tstamp"": ""2019-10-02T23:57:52-05:00""
""text"": ""Completed automation - Part 2 - Engagement Tagging"",
""type"": ""series_end"",
""tstamp"": ""2019-09-18T20:54:41-05:00""
""text"": ""Entered automation - Last email open"",
""type"": ""series_enter"",
""tstamp"": ""2019-09-18T20:54:40-05:00""
""text"": ""Entered automation - Part 1 - Engagement Tagging"",
""type"": ""series_enter"",
""tstamp"": ""2019-09-18T20:54:40-05:00""
""text"": ""Entered automation - Part 2 - Engagement Tagging"",
""type"": ""series_enter"",
""tstamp"": ""2019-09-18T20:54:40-05:00""
""text"": ""Completed automation - Part 1 - Engagement Tagging"",
""type"": ""series_end"",
""tstamp"": ""2019-09-18T20:54:40-05:00""
""text"": ""Completed automation - Last email open"",
""type"": ""series_end"",
""tstamp"": ""2019-09-18T20:54:40-05:00""
""text"": ""Completed automation - Part 2 - Engagement Tagging"",
""type"": ""series_end"",
""tstamp"": ""2019-09-18T20:54:39-05:00""
""text"": ""Entered automation - Last email open"",
""type"": ""series_enter"",
""tstamp"": ""2019-09-18T20:54:38-05:00""
""text"": ""Entered automation - Part 1 - Engagement Tagging"",
""type"": ""series_enter"",
""tstamp"": ""2019-09-18T20:54:38-05:00""
""text"": ""Entered automation - Part 2 - Engagement Tagging"",
""type"": ""series_enter"",
""tstamp"": ""2019-09-18T20:54:38-05:00""
""text"": ""Completed automation - Part 1 - Engagement Tagging"",
""type"": ""series_end"",
""tstamp"": ""2019-09-18T20:54:38-05:00""
""text"": ""Completed automation - Last email open"",
""type"": ""series_end"",
""tstamp"": ""2019-09-18T20:54:38-05:00""
""text"": ""Contact opened campaign - Jobs Closing soon (Mems) 19Sep19"",
""tstamp"": ""2019-09-18T20:54:38-05:00""
""text"": ""Sent Campaign - Jobs Closing soon (Mems) 19Sep19"",
""tstamp"": ""2019-09-18T20:48:52-05:00""
""text"": ""Sent Campaign - AHAU Weekly Wrap: 13 September MEMBER"",
""tstamp"": ""2019-09-12T23:21:05-05:00""
""text"": ""Entered automation - Last email open"",
""type"": ""series_enter"",
""tstamp"": ""2019-09-12T20:53:04-05:00""
""automation_history"": [
""name"": ""Part 1 - Engagement Tagging"",
""adddate"": ""2019-09-18 20:54:40"",
""name"": ""Part 2 - Engagement Tagging"",
""adddate"": ""2019-09-18 20:54:40"",
""name"": ""Last email open"",
""adddate"": ""2019-09-18 20:54:40"",
""name"": ""Part 1 - Engagement Tagging"",
""adddate"": ""2019-09-18 20:54:38"",
""name"": ""Part 2 - Engagement Tagging"",
""adddate"": ""2019-09-18 20:54:38"",
""name"": ""Last email open"",
""adddate"": ""2019-09-18 20:54:38"",
""name"": ""Part 1 - Engagement Tagging"",
""adddate"": ""2019-09-12 20:53:04"",
""name"": ""Part 2 - Engagement Tagging"",
""adddate"": ""2019-09-12 20:53:04"",
""name"": ""Last email open"",
""adddate"": ""2019-09-12 20:53:04"",
""name"": ""Part 1 - Engagement Tagging"",
""adddate"": ""2019-09-12 20:53:02"",
""name"": ""Part 2 - Engagement Tagging"",
""adddate"": ""2019-09-12 20:53:01"",
""name"": ""Last email open"",
""adddate"": ""2019-09-12 20:53:01"",
""name"": ""Part 1 - Engagement Tagging"",
""adddate"": ""2019-09-12 20:51:57"",
""name"": ""Part 2 - Engagement Tagging"",
""adddate"": ""2019-09-12 20:51:56"",
""name"": ""Last email open"",
""adddate"": ""2019-09-12 20:51:56"",
""listname"": ""ArtsHub Australia"",
""campaignname"": ""Jobs Closing soon (Mems) 19Sep19"",
""sdate"": ""2019-09-19 13:34:14"",
""email"": ""msingh@artshub.com.au"",
""subscriberid"": ""5868"",
""tstamp"": ""2019-09-18 20:54:38"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""19\/09\/2019 13:54""
""tstamp"": ""2019-09-18 20:54:38"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""19\/09\/2019 13:54""
""listname"": ""ArtsHub Australia"",
""campaignname"": ""JOBS CLOSING (13 SEPTEMBER) MEMBERS"",
""sdate"": ""2019-09-13 13:37:08"",
""email"": ""msingh@artshub.com.au"",
""subscriberid"": ""5868"",
""tstamp"": ""2019-09-12 20:51:56"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""13\/09\/2019 13:51""
""tstamp"": ""2019-09-12 20:51:56"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""13\/09\/2019 13:51""
""listname"": ""ArtsHub Australia"",
""campaignname"": ""JOBS CLOSING 23 AUG (PAID)"",
""sdate"": ""2019-08-23 13:34:55"",
""email"": ""msingh@artshub.com.au"",
""subscriberid"": ""5868"",
""tstamp"": ""2019-08-22 21:36:01"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""23\/08\/2019 14:36""
""tstamp"": ""2019-08-22 21:36:01"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""23\/08\/2019 14:36""
""listname"": ""ArtsHub Australia"",
""campaignname"": ""JOBS CLOSING 16 AUGUST 2019 (PAID)"",
""sdate"": ""2019-08-16 14:03:39"",
""email"": ""msingh@artshub.com.au"",
""subscriberid"": ""5868"",
""tstamp"": ""2019-08-15 21:11:06"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""16\/08\/2019 14:11""
""tstamp"": ""2019-08-15 21:11:06"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""16\/08\/2019 14:11""
""listname"": ""ArtsHub Australia"",
""campaignname"": ""AHAU Midweek: 14.8 PAID"",
""sdate"": ""2019-08-14 12:55:00"",
""email"": ""msingh@artshub.com.au"",
""subscriberid"": ""5868"",
""tstamp"": ""2019-08-13 20:04:37"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""14\/08\/2019 13:04""
""tstamp"": ""2019-08-13 20:04:37"",
""email"": ""msingh@artshub.com.au"",
""tstamp_settings"": ""14\/08\/2019 13:04""
""result_message"": ""Success: Something is returned"",
""result_output"": ""json""
Contact thisContact = new Contact();
thisContact = JsonConvert.DeserializeObject<Contact>(json);
Console.WriteLine("Hello World");