QuestionQ350

IP Services

Which CRUD operation maps to the HTTP GET method?

  • A create
  • B read
  • C delete
  • D update
Explanation

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.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!