You could also use .find() to get the object which has an Id
of 1
let obj = pm.response.json().d.results.find(e => e.Id === 1);
console.log(obj.Value);
You could also use .find() to get the object which has an Id
of 1
let obj = pm.response.json().d.results.find(e => e.Id === 1);
console.log(obj.Value);