yash_verma
5 years agoNew Contributor
Mapper help required
Hi team,
How can I dynamically generate the mapper output. scenario is
Name id email
yash 1 Y
suresh 2
in above example email id null for id 2 so I need to create key value accordingly to send to rest api post
for 1st row
{“Name” : “yash”,
“id” : “1” ,
“email” : “Y” }
for 2nd row output shld be
{“Name” : “yash”,
“id” : “1” }
pls help if not in mapper than in which component i can accomplish this