Hi I am trying to parse a JSON response that contains dynamic keys and values. Below is an example of the JSON I am parsing:
{
"data": [
{
"Id": "XXXXXXXXXXXXXXXXXXXXXXXX",
"IsActive": true,
"DateCreated": "2017-11-09T00:01:49.827Z",
"DateModified": "2017-11-09T00:01:49.827Z",
"IsDeleted": false,
"Uid": "XXXXXXXXXXXXXXXXXXXXXXXX",
"CustomObject": {
"customdata1": " Store my customdata1 value",
"customdata2": " Store my customdata2 value"
}
}
],
"Count": 1
}
Where CustomObject is the dynamic object that I am trying to parse. Another option for me is to simply convert the value of CustomObject into a string, but I am also unable to find a method for that.
*This post is locked for comments
I have the same question (0)