DEV Community

Cover image for 🔥 HTTP Methods with Postman | Rest Assured Tutorial | Day 4  |
Pramod Dutta
Pramod Dutta

Posted on • Updated on

🔥 HTTP Methods with Postman | Rest Assured Tutorial | Day 4 |

Hey BugHunters, In this video, we are going to learn HTTP Methods with Postman

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

 Rest Assured Tutorial

🚀 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

HTTP request methods

✅ GET
The GET method requests a representation of the specified resource. Requests using GET should only retrieve data.
Alt Text

✅ HEAD
The HEAD method asks for a response identical to that of a GET request, but without the response body.

✅ POST
The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server.
Alt Text

✅ PUT
The PUT method replaces all current representations of the target resource with the request payload.

✅ DELETE
The DELETE method deletes the specified resource.
Alt Text

✅ PATCH
The PATCH method is used to apply partial modifications to a resource.
Specifications
Alt Text

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

 TheTestingAcademy

Top comments (0)