</>

Technology

Postman

Difficulty

Beginner

Interview Question

What are the different HTTP methods supported by Postman?

Answer

HTTP Methods in Postman

Postman supports all standard HTTP methods via the method dropdown in the request builder:

MethodPurposeCommon Status on Success
GETRetrieve data200 OK
POSTCreate a new resource201 Created
PUTUpdate/replace entire resource200 OK
PATCHPartial update of a resource200 OK
DELETEDelete a resource200/204
HEADSame as GET but no body200 OK
OPTIONSDiscover allowed methods200 OK

Additional Methods Postman Supports

  • COPY — Copy a resource
  • LINK / UNLINK — Link/unlink resources
  • PURGE — Remove cached data
  • LOCK / UNLOCK — WebDAV methods
  • PROPFIND — WebDAV property discovery

How to Select in Postman

  1. Click the method dropdown (shows "GET" by default)
  2. Select the desired method from the list
  3. The interface adapts (e.g., Body tab becomes editable for POST/PUT)

Method-Specific Tips in Postman

  • POST/PUT/PATCH: Use the Body tab to set request payload
  • GET/DELETE: Usually no body needed (use Params for query parameters)
  • DELETE: Some APIs require a body — Postman supports body with DELETE too
  • HEAD: Response shows only headers, no body displayed

Follow AutomateQA

Related Topics