Parsing JSON Request. Find object in array

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);
4 Likes