Skip to main content

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
  1. Dec 25, 2021, 11:09 AM

    Try this out:

     

    output application/json

    ---

    ["FullName": payload..Name ++ payload..LastName joinBy " " ]

     

    Regards,

    Rahul

0/9000