Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »


https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST

The HTTP PUT method only allows complete replacement of a document

  • PUT is idempotent: calling it once or several times successively has the same effect (that is no side effect),
  • the enclosed entity SHOULD be considered as a modified version of the one residing on the origin server


The HTTP POST method sends data to the server

  • where successive identical POST may have additional effects, like passing an order several times.



HTTP PATCH request method applies partial modifications to a resource

  • No labels