Let's start creating the first test case for Rest API in postman tool by following the below steps:
1. Select a URI (REST API URL) and placed it to the Enter Request URL field of Postman tool.
2. Select the request type from the list of requests. Here i have selected the GET request.
In case of GET request, no need to send anything in the body section, that is why body section is disabled here.
3. Click on the send button.
Once you click on the send button, request would be sent to the given server and response would be received.
The above response received is in JSON format. There are many more ways to view the response like HTML, XML, Text and Auto.
There is an option named as History to view all the previous requests that you had sent.







