- HTTP Request Methods or HTTP Verbs to indicate the desired action to be performed for a given resource
- HTTP Request Resource - is identified by the URL path
|
HTTP Request Template |
HTTP Request Example |
|---|---|
|
Request-Method /Request-Resource HTTP-Version HTTP Request Body (depends on Request-Method) |
POST /test/resource HTTP/1.1Host: foo.example.com |
HTTP Request Method Types
|
requests a representation of the specified resource. Requests using | |
|
asks for a response identical to that of a | |
|
used to submit an entity to the specified resource, often causing a change in state or side effects on the server | |
|
replaces all current representations of the target resource with the request payload | |
|
deletes the specified resource | |
|
establishes a tunnel to the server identified by the target resource | |
|
used to describe the communication options for the target resource | |
|
performs a message loop-back test along the path to the target resource | |
|
used to apply partial modifications to a resource |