Removing empty properties from json respone
I have requirement where we should not send any empty tags in JSON response.
for example
{"Name":"balaji","Education":{},"EMPID":"123123","Phnum":""}
I just need to send
{"Name":"balaji","EMPID":"123123"}
Iam using
MapFrom :JSON
MapfromkeyProperty : .EmployeeDetails
EmployeeDetails is a property in clipboard page which has all the json properties
***Updated by moderator: Lochan to add Categories***