Using the Apperyio builder.... I would like fire a mapping event only if condtion is met using javacript ie. if (variable) {  
 do thisxxx;   
 }  
  
 How can I achieve this ? 
 Thank you
Hello,
1) Please create a fake service for that (e.g. generic service, or REST service)  
 2) Add a mapping to it's "before send" event or "complete" event 
 3) Use any condition to run that service, e.g.: 
 preif (variable){ 
    myFakeService.execute(); 
 }/pre