0 votes
in XML by
What are Get request and how to create it in Postman?

1 Answer

0 votes
by

Since now we know how to create the request in Postman, it's time to work on GET request.  A GET request gets the information from the server. When you make the GET request on the server, then the server responds to the request.

GET request will not affect any data on the server. Means, there is no creation, updation, addition, or deletion of data on the server when you are making a GET request.

GET request contains all information inside the URL, and because of that, some people do not prefer to use GET request while they are sending some confidential data such as passwords. For example, if you search anything on Google, you actually using a GET request because there is no sensitive information, and you are just requesting the page. You can try to search for something on Google; you will get the same search string in the URL.

To create the first GET request in Postman, follow the following steps:

Step 1: Create a request. To create a new request, open a new tab, click from the + plus button.

GET Request in Postman

You can also open the new tab by entering ctrl+T or from the Open New menu select Tab option.

GET Request in Postman

Since now we know how to create the request in Postman, it's time to work on GET request.  A GET request gets the information from the server. When you make the GET request on the server, then the server responds to the request.

GET request will not affect any data on the server. Means, there is no creation, updation, addition, or deletion of data on the server when you are making a GET request.

GET request contains all information inside the URL, and because of that, some people do not prefer to use GET request while they are sending some confidential data such as passwords. For example, if you search anything on Google, you actually using a GET request because there is no sensitive information, and you are just requesting the page. You can try to search for something on Google; you will get the same search string in the URL.

To create the first GET request in Postman, follow the following steps:

Step 1: Create a request. To create a new request, open a new tab, click from the + plus button.

GET Request in Postman

You can also open the new tab by entering ctrl+T or from the Open New menu select Tab option.

GET Request in Postman

Once you create a new request then you will get the following window:

GET Request in Postman

Step 2: Enter the URL in the address bar. We will use www.javatpoint.com.

GET Request in Postman

Step 3: Now, select the GET request from the list of request methods.

GET Request in Postman

Step 4: Now press send.

GET Request in Postman

Step 5: Once you press the send button, you will get the response from the server. Make sure you have a proper internet connection; otherwise, you will not get a response.

Related questions

0 votes
0 votes
0 votes
asked Sep 16, 2020 in XML by GeorgeBell
0 votes
0 votes
asked Sep 16, 2020 in XML by GeorgeBell
0 votes
asked Sep 16, 2020 in XML by GeorgeBell
+1 vote
asked May 20, 2021 in POSTMAN by sharadyadav1986
...