Why use HTTP PUT and DELETE methods instead of POST?
The advantage is mostly semantic, and can also simplify URLs to an extent. The different HTTP methods map to different actions: POST => create a new object DELETE => delete an object PUT => modify an object GET => view an object Then, in theory, you can use the same URL, but interact with it … Read more