I have a test in Postman where I do a post request and need to parse the json response
The response looks like this:
\"aPIProxy\" : [ { \"name\"
The below postman script might help you.
var jsonData = JSON.parse(responseBody); var jsonNamesData = jsonData.aPIProxy; console.log(jsonNamesData); var parsedData = ""; for(var i=0;i