Hi There,
Am trying to convert json incoming payload to javascript object using below
request: {"Email":"test","RequestIds":"1","IsFromCache":"true"}
Below is apige javascript
var s = context.getVariable('request.content');
var s1 = JSON.parse(s);
pirnt(s1)
when i print am getting the output as [object object].