I\'m using Mule 3.4 CE and I have a JSON data coming through HTTP in the following format:
{ \"People\" : [ { \"Details\" : {
If you want to get the particular email in the details use the below MEL expression.
#[json:People[0]/Details/Email]
If you want to get all the emails, pass the json path of repeatable in ForEach Collections then pass the path to get Email as shown below.