HTTP Methods (GET, POST, PUT, DELETE) & Parameters

Common HTTP Methods

MethodPurpose
GETRetrieve data from a server without modifying it
POSTSend new data to be created on the server
PUTUpdate existing data on the server
DELETERemove specified data from the server

Working with Parameters

Parameters allow you to pass additional data with a request, such as filtering results or specifying an identifier, and are commonly added directly in the URL or through the dedicated Params tab in Postman.

Types of Parameters

TypeDescription
Query ParametersAppended to the URL after a "?", e.g. ?id=123
Path ParametersEmbedded directly in the URL path, e.g. /users/123
Header ParametersPassed within the request headers
With a solid grasp of HTTP methods and parameters, you're ready to start organizing your requests into collections.

Ready to master Postman API Testing Course?

Join Uncodemy's hands-on training and build real-world API testing skills with expert mentors.

Explore Course