I have a Json response from one of the proxy and I need to store the records of the JSON as Cache for use the next time the proxy is called.
Each record has to be stored separately with email address as cache key.
My Json looks like
[
{
"OfficeID": "1244",
"AuditorID": "343",
"FirstName": "P",
"LastName": "test",
"EmailAddress": "p@tst.com",
"PhoneNumber": "666-666-6666",
"PhoneExtension": " "
},
{
"OfficeID": "2344",
"AuditorID": "3435",
"FirstName": "wsr",
"LastName": "eaf",
"EmailAddress": "wer@tst.com",
"PhoneNumber": "444-888-9999",
"PhoneExtension": " "
}
]