DEV Community

Cover image for πŸ”₯ How to Work with GET/POST/PUT/PATCH/DELETE in Postman(in 10 min)
Pramod Dutta
Pramod Dutta

Posted on • Edited on

πŸ”₯ How to Work with GET/POST/PUT/PATCH/DELETE in Postman(in 10 min)

Hey BugHunters, In this video we are going to discuss CRUD in Postman In 10 minutes and How to work with GET/POST/PUT/PATCH/DELETE | API Testing with Postman

πŸ”₯ Install JSON Server - https://www.npmjs.com/package/json-server

 Rest Assured Tutorial

βœ… What is CRUD in Postman?

Create, Read, Update, and Delete (CRUD) are the four basic functions that models should be able to do, at most.

βœ… What is GET Request?

The GET Method. GET is used to request data from a specified resource. GET is one of the most common HTTP methods.

βœ… What is POST Request?

POST is used to send data to a server to create/update a resource.
The data sent to the server with POST is stored in the request body of the HTTP request:

βœ… What is PUT Request?

PUT is used to send data to a server to create/update a resource.
The difference between POST and PUT is that PUT requests are idempotent.

That is, calling the same PUT request multiple times will always produce the same result. In contrast, calling a POST request repeatedly have side effects of creating the same resource multiple times.

βœ… What is PATCH Request?

PATCH is somewhat analogous to the "update" concept found in CRUD (in general, HTTP is different than CRUD, and the two should not be confused)

βœ… What is DELETE Request?

The DELETE method deletes the specified resource.

P.S:
This is Day 10 of the 30 days of API Testing challenge Series. Where will learn the Basics before jumping to API Automation.

πŸš€ All 30 Days Task - https://scrolltest.com/30days/restassured
πŸ“Œ Join 30 Days Challenge Updates - https://scrolltest.com/tta
πŸŽ“ Free Automation MasterClass - https://thetestingacademy.com
πŸ“š REST API testing with Python - https://masterapitesting.com

--
Be sure to subscribe for more videos like this!

 TheTestingAcademy

Top comments (0)