How to Download and Use Postman
Downloading Postman
Go to Postman Downloads
Choose your desired platform among Mac, Windows, or Linux.
Importing Postman Scripts
Go to Postman Downloads
Open Postman.
Click the "Import" button.
Select the import file or drag and drop the file into the box.
Making HTTP Requests
HTTP Request
Clicking this would display a dropdown list of different requests such as GET, POST, COPY, DELETE, etc.
In testing, the most commonly used requests are GET and POST.
Params
This is where you will write parameters needed for a request such as key values.
You can set headers such as content type JSON depending on the needs of the organization.
Body
This is where one can customize details in a request, commonly used in POST requests.
Tests
These are scripts executed during the request.
It is important to have tests as they set up checkpoints to verify if the response status is ok, if the retrieved data is as expected, and other tests.
Working with GET Requests
Set your HTTP request to GET.
In the request URL field, input the link.
Click "Send".
You will see a 200 OK message.
Working with POST Requests
Set your HTTP request to POST.
Input the same link in the request URL field.
Switch to the "Body" tab.
In "Body", click "raw" and select "JSON".
Pre-filled sample post man scripts can be downloaded here
Open the Post man
Click the import button
Select the import file or Drag and drop the file in the box
Download
Back to top