I have not yet used Json so this is very new to me. However, I am working on a system that outputs a json string from which I have to retrieve a single object to use in a js script.
This is the output
{
"SecureZoneSubscriptionList": {
"EntityId": 51350993,
"Subscriptions": [{
"ZoneName": "FACCM Membership",
"ZoneId": "6460",
"ExpiryDate": "9/5/2014 12:00:00 AM",
"SellAccess": true,
"CostPerPeriod": "0.1",
"CycleType": ""
}, ]
}
}
How can I retrieve JUST the expiryDate?
Thanks!