|
Answer» The list of HTTP methods which operate on the resources are as FOLLOWS:
- HEAD: Retrieves the resource METADATA.
- GET: Retrieves the resource metadata and content.
- POST: Requests the server to create a new resource using the data enclosed in the REQUEST body.
- PUT: Requests the server to replace an existing resource with the one enclosed in the request body.
- DELETE: Requests the server to remove the resource identified by that URI.
- OPTIONS: Requests the server to return DETAILS about capabilities either globally or specifically towards a resource.
The list of HTTP methods which operate on the resources are as follows:
|