
Hi Guys I'm new to Mule.
{
"details":[
{
"Name": "satish",
"LastName":"Kumar"
}
]
}
I wanted the above payload to be transformed like below
[
"Fullname": "satish Kumar"
]
2 answers

Try this out:
output application/json
---
["FullName": payload..Name ++ payload..LastName joinBy " " ]
Regards,
Rahul