Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7560961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:02:36+00:00 2026-05-30T13:02:36+00:00

I know this is not hard, but I’ve been staring at the JSON.Net documentation

  • 0

I know this is not hard, but I’ve been staring at the JSON.Net documentation for a half hour and don’t see how it works. I’ve got it setup, but my initial attempts are failing and the documenation that I have looked at so far isn’t making it obvious (to me, at least) how to deserialize the array form response.data and then get at the individual fields of each record.

Also, I don’t need to use JSON.Net – it just seemed like a good choice. Any solution will do just fine.

{
    "request":{
        "Format":"json",
        "Target":"Affiliate",
        "Method":"findAll",
        "Service":"HasOffers",
        "Version":"2",
        "NetworkId":"directagents",
        "NetworkToken":"......"
    },
    "response":{
        "status":1,
        "data":{
            "2056":{
                "Affiliate":{
                    "id":"2056",
                    "company":
                    "123 Greetings 123 Greetings (CD186)",
                    "address1":"1 Change Address",
                    "address2":"",
                    "city":"City",
                    "region":"NY",
                    "country":"US",
                    "other":null,
                    "zipcode":"11111",
                    "phone":"-",
                    "fax":null,
                    "website":null,
                    "signup_ip":null,
                    "date_added":"2012-02-24 18:00:24",
                    "modified":-62169966000,
                    "ref_id":"CD186",
                    "status":"pending",
                    "wants_alerts":"1",
                    "account_manager_id":"20",
                    "payment_method":"check",
                    "payment_terms":"net 30",
                    "w9_filed":"0",
                    "referral_id":null,
                    "affiliate_tier_id":null,
                    "fraud_activity_score":null,
                    "fraud_activity_alert_threshold":null,
                    "fraud_activity_block_threshold":null,
                    "fraud_profile_alert_threshold":null,
                    "fraud_profile_block_threshold":null,
                    "scrub_offer_pixels":null,
                    "shared":"0"
                    }
                },
            "1606":{
                                   .......this is enough to see how its structured....
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T13:02:38+00:00Added an answer on May 30, 2026 at 1:02 pm

    You could model that “array” as Dictionary<int, AffiliateHolder>. The classes for that JSON could look like this:

    class Top
    {
        public Request Request { get; set; }
        public Response Response { get; set; }
    }
    
    class Request
    {
        public string Format { get;set; }
        // etc.
    }
    
    class Response
    {
        public int Status { get; set; }
        public Dictionary<int, AffiliateHolder> Data { get; set; }
    }
    
    class AffiliateHolder
    {
        public Affiliate Affiliate { get; set; }
    }
    
    class Affiliate
    {
        public int Id { get; set; }
        // etc.
    }
    
    var o = JsonConvert.DeserializeObject<Top>(myJSONString);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this site is written using ASP.Net MVC and I do not see
I know this has been asked before , but I don't think these solutions
I know this isn't hard, but I'm not having any luck. I want to
I know this is not programming directly, but it's regarding a development workstation I'm
I know this is not a real programming question. But, it relates to programming
I know this is not programming related, but I have a scenario. Each video
Hey. I know this is not a 'refactor my code' site but I made
I know this question is not really important.. however I've been wondering: Which of
I know this probably really simple but Im not sure what im doing wrong...
I know this sort of code is not best practice, but nevertheless in certain

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.