What is the significance of the HTTP method PUT?

  • Deletes the specified resource
  • Requests a representation of the specified resource
  • Retrieves the specified resource
  • Updates or creates a resource at the specified URI
The HTTP method PUT is used to update or create a resource at the specified URI. It is idempotent, meaning that if the same request is made multiple times, the result will be the same.
Add your answer
Loading...

Leave a comment

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