What is the PUT method within HTTP?
PUT
The HTTP PUT method is used to create or replace the representation of a resource at the target URI. Standards documentation describes PUT as replacing the state of the target resource, and it is idempotent, which rules out the choices describing it as nonidempotent, read-only, or used to display a website.
Community Discussion