When is the PUT method used within HTTP?
PUT
The HTTP PUT method is used to create or update a resource on a server. It is idempotent, meaning multiple identical requests produce the same result. PUT is not used for read-only operations (which use GET) or for non-idempotent operations (which use POST or PATCH).
Community Discussion