HTTP - Put Request

About

put is a value of the HTTP method header field. It's a attribute of a http request that can be used by the underlining server function.

The exact meaning of the put value as given by the specification 1) is replace all current representations of the target resource with the request payload

After a successful PUT, a subsequent GET on that same target resource should result in the same data.

The function should be idempotent.

Note that there is no guarantee as:

  • the server function may not implement it that way
  • another external request may have already changed the state





Discover More
Http Status 304 Chrome Devtool
HTTP - Redirect (status codes 3xx) - Client must take additional action

The HTTP 3xx class of status code indicates that the client (user or user agent) must take additional action to complete the request. The redirect url is defined by the location header. A user agent...
Card Puncher Data Processing
IO - CRUD (Create/Read/Update/Delete) - basic functions of persistent storage

In computer programming, create, read, update and delete (as an acronym CRUD) are the four basic functions of persistent storage. Operation SQL HTTP File System mutator Create INSERT PUT...
Card Puncher Data Processing
IO - Create Operation

create is a IO operation that will add/insert/create data in a data store. The following command are create operation: SQL: INSERT HTTP: PUT / POST File: Write
Map Of Internet 1973
Network - Remote Transfer Application Protocols / Remote File Access (Http, Ftp, Scp, )

Network - Remote Transfer Application Protocols / Remote File Access (Http, Ftp, Scp, ) ... This page is applications that implements a protocol to transfer/transport data: from a remote services...
Web Service - Representational State Transfer (REST|RESTful) Web services

Representational State Transfer (REST) Web services, or “RESTful” Web services describes any simple interface that transmits data over a standardized interface (such as HTTP) without an additional...
What are safe and unsafe requests?

In a HTTP security context, requests are: safe if they don't have a method that changes the state (ie GET, HEAD) unsafe otherwise (ie with the method POST, PATCH, PUT) When the type of request has...
What are the HTTP Request Methods (Get, Post, Put, )?

The http method is a mandatory header of http request that defines the type of operation. A minimal get request from this page It's used by the web server router to map a request to a function....



Share this page:
Follow us:
Task Runner