I am trying to create a web API which calls the other service and returns a array of response. The called service returns the response. I am able to get the individual item from the called service. But not sure how to build array of items and return as response from the API I am creating.
The JSON returned from the service looks like
{
"cr_response": {
    "details": [{
        "name": "Req",
        "fields": [{
                "value": "Prj0\r\nPrj1",
                "name": "Project"
            },
            {
                "value": "October 13, 2017 14:18",
                "name": "Submitted"
            },
            {
                "value": "John",
                "name": "Rec Name"
            }
        ]
    }],
    "cr_metadata": {}
}
}
And the POCO class looks like
public class Field
{
    public string value { get; set; }
    public string name { get; set; }
}
public class Detail
{
    public string name { get; set; }
    public List<Field> fields { get; set; }
}
public class CrMetadata
{
}
public class CrResponse
{
    public List<Detail> details { get; set; }
    public CrMetadata cr_metadata { get; set; }
}
 public class RootObject
 {
      public CrResponse cr_response { get; set; }
 }
Below is the code for calling the service and retrieving the response from the services
var response = await iLab_client.GetAsync(uri);
var datafile = await response.Content.ReadAsStringAsync();
var returnDataObj = JsonConvert.DeserializeObject<DTO.RootObject>(datafile);
foreach (var form in returnDataObj.cr_response.details)
{
    name_response = form.name;
    return Ok(name_response);
}
Here I can access the name from the details but not sure how can I access the all the name and value from the fields and construct it in a array. And send it as a JSON response. I tried like
            foreach (var form in returnDataObj.cr_response.details)
            {
                var id_response = form.fields;
                return Ok(id_response);
            }
But it throws error like
<Error>
<Message>An error has occurred.</Message>
<ExceptionMessage>
The 'ObjectContent`1' type failed to serialize the response body for content 
type 'application/xml; charset=utf-8'.
</ExceptionMessage>
System.InvalidOperationException