π₯ 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.
π 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.

β
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.

β
PUT
The PUT method replaces all current representations of the target resource with the request payload.
β
DELETE
The DELETE method deletes the specified resource.

β
PATCH
The PATCH method is used to apply partial modifications to a resource.
Specifications

