Make Selenium Easy

Postman Tutorial Part 51 -Printing Request Body & Response Body in Postman Console

As a part of Postman Tutorial – End to End , in this post, we will learn “How to print Request and Response body in console?”.

We have already learnt to retrieve Request and Response body in Postman but as this is a frequently asked interview question on Postman, so I am combining concepts in a small post separately.

Code to get Request Body:-

var jsonReq = JSON.parse(pm.request.body.raw);

var jsonRes = pm.response.json();

To print just put in console.log(). To extract value from JSON body, you can write json path which we have seen already. You can refer those concepts here.

Complete code:-

Postman Console:-

However, you can get all these details by clicking on URI.

You can import example collection from here.

You can find all Selenium related post here.
You can find all API manual and automation related posts here.
You can find frequently asked Java Programs here.

Author: Amod Mahajan

A software Tester who is paid to judge products developed by others. Currently getting paid in American Dollars. Writing technical posts and creating YouTube videos are my hobbies.

Leave a Reply

Please wait...

Subscribe to new posts to become automation expert

Want to be notified when my new post is published? Get my posts in your inbox.