Which CRUD operation maps to the HTTP GET method?
GET
The HTTP GET method is used to retrieve a resource, which corresponds to the read operation in CRUD. In the standard CRUD-to-HTTP mapping, POST is create, GET is read, PUT or PATCH is update, and DELETE is delete.
POST
PUT
PATCH
DELETE
Community Discussion