top of page
Postman Tutorial
Create A New Request(GET) In Postman
How To Create A New Request In Postman ?
We should save our requests in collections when using Postman. So, before creating any request first let's create a collection in Postman.
Follow these steps to create a New Request In Postman :
Click on 'Collections' in the Sidebar section.
Click on '+' icon, give a meaningful name to your collection, like 'First Collection'.
Your collection has been created. Now let's create a request within this collection, we are using 'GET' http method type here for making the request :
Go to your 'Collection'.
Click on the three dots and select option 'Add Request' by clicking on it.
Enter a meaningful request name, like 'FirstAPITest' and select http method.
Enter a valid request URL(like https://www.google.com) and click on 'Save'.
Request has been created now.
To run the request, click on 'Send'.
Response will be visible in response section.
Finally, we have created and run the request successfully.
Refer next page POST Request In Postman
bottom of page