
stackoverflow.com
https://stackoverflow.com/questions/43258725/use-p…
Use POST instead of PUT REST - Stack Overflow
Can I use POST instead of PUT method? Yes, you can. HTML forms, for example, use POST for all writes. If POST can do work of PUT method, why PUT method is required? It didn't use to be. In HTTP/1.0, the specified methods were HEAD, GET, and POST. PUT was relegated to Appendix D: Additional Features. If I use POST method over PUT method, what will be disadvantages? PUT is idempotent. POST is ...