Hi I have a 1 json as below
"first": [
{
"projectid": "15",
"approval_status": "A"
},
{
"projectid": "24",
"approval_status": "A"
} ]}
The next payload is stores in a flowVariable
{
"Second": [
{
"projectid": "15",
"total": "123",
"updated": "yes"
},
{
"projectid": "24",
"total": "123",
"updated": "yes"
}]}
Am using datawevae to merge these payload but its not giving expected result my expected value is
{
"Result": [
{
"projectid": "15",
"total": "123",
"approval_status": "A"
},
{
"projectid": "24",
"total": "123",
"approval_status": "A"
}]}
Edited Answer Now it will filter dynamically based on ur ID.