How to remove specific key and its value from JSON in MuleSoft using DataWeave?
Sample Code: %dw 2.0 output application/json --- payload filterObject ((value, key) -> (key as String != "Test")) In the above code1. filterObject is used to filter JSON payload.2. key as ....