0

Hi Guys Im New In Postman I Want To Log All Error Message In Postman Console i have many error message in response whats is the code i dont know how log all errors

This is The Response

this is my code by the way

new one

1 Answers1

0

You can do this

const errors = _.map(Data.errors, _.property("message"));
console.log(errors);

Result:

enter image description here

lucas-nguyen-17
  • 5,516
  • 2
  • 9
  • 20