Can anyone tell me how to parse this JSON reponse? I need to extract "last name" from the services.
{
"Entity":{
"ID":1,
"UserTypeID":1,
"Code":"lPEq",
"Services":[
{
"ID":118,
"Code":"1",
"Parent_ID":null,
"Name":"Alex",
"lastName":"John"
},
{
"ID":119,
"Code":"2",
"Parent_ID":null,
"Name":"Christy",
"lastName":"Noel"
}
]
}
}