Please enable JavaScript.
Coggle requires JavaScript to display documents.
Relation between HTTP method and CRUD operations - Coggle Diagram
Relation between HTTP method and CRUD operations
CRUD operations
CREATE
Generates a new register
READ
Consults information without modifying it
UPDATE
Modifies an existing resource
DELETE
Deletes an existing resource
¨Principal HTTP methods
GET
Obtains a resource without modifying it
POST
Creates a new resource
DELETE
Eliminates an existing resource
PUT
Completly replaces an existing resource
Relation
CREATE
POST
READ
GET
HEAD
UPDATE
PUT
PATCH
DELETE
DELETE
Other HTTP methods relations
PATCH
Partially modifies an existing resource
HEAD
Obtains the Head of the resource, without body
OPTIONS
Returns the allowed HTTP methods on a resource
Differences
Abstraction
CRUD
general concept for data management
HTTP
The HTTP methods are a way of implementing this concept
Scope
CRUD
It is more a general concept than specific methods
HTTP
Related with client-server communicationat web level