Hi,
I have the following sample JSON Object array, i.e.:
[
{
"type": "Campaign",
"currentStatus": "Active",
"id": "206",
"depth": "complete",
"folderId": "1428",
"name": "Car Loan",
"isReadOnly": "false"
},
{
"type": "Debate",
"currentStatus": "Active",
"id": "207",
"depth": "pending",
"folderId": "1429",
"name": "House Loan",
"isReadOnly": "true"
}
]
Based on the above, I am unsure how to iterate through each of these JSON objects, inside this array?
For each object, I then need to produce a report showing all columns for these two JSON object records.
I've looked at apex_json.get_count
but unsure how to apply to this JSON array.
Any help would be much appreciated.
Thanks.
Tony.