Which HTTP methods are commonly used in RESTful APIs for CRUD operations?

  • CREATE, READ, UPDATE, DELETE
  • FETCH, INSERT, MODIFY, REMOVE
  • GET, POST, PUT, DELETE
  • RECEIVE, ADD, CHANGE, DELETE
CRUD operations in RESTful APIs correspond to HTTP methods: GET for READ, POST for CREATE, PUT for UPDATE, and DELETE for DELETE. These methods provide a standardized way to interact with resources over the web.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *