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)

50 CLI Tools You Can't Live Without

>> Check out this classic DEV post <<