For deleting a resource in REST, what HTTP method is implemented?

  • DELETE
  • PATCH
  • POST
  • PUT
The DELETE method in REST is used to delete a resource. It requests the removal of the specified resource, and the operation is idempotent, meaning that subsequent requests have no additional effect once the resource is deleted.
Add your answer
Loading...

Leave a comment

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