HTTP Method You Must Know
HTTP Method You Must Know
HTTP
methods
you must
know
Giri Yaram 2
Get
Example
GET/ api/customers
Description
POST
Example
POST/ api/customers
Description
PUT
Example
PUT/ api/customers/123
Update customer by ID
Description
PATCH
Example
PATCH/ api/customers/1234
{’name’: “cherry”}
Update name for customer
by ID 1234
Description
DELETE
Example
DELETE/ api/customers/143
Delete customer by ID
Description
Deletes a resource.
Regardless of number of calls, it
returns the same result.
Giri Yaram 7
HEAD
Example
HEAD/ api/customers
OPTIONS
Example
OPTIONS/ api/main.html/1.1
TRACE
Example
TRACE/ api/main.html
CONNECT
Example
Connect www.example.com:8080
Description