I thought that part of making a RESTful web service was deciding which operations are read-only and which affect the state; and splitting them into GET and POST requests accordingly.
Posted Aug 3, 2012 21:16 UTC (Fri) by dlang (✭ supporter ✭, #313)
[Link]
That depends on how you define REST
many groups make everything a GET request, especially for APIs that are not expected to be used from browsers, but rather called from other applications, especially in B2B type situations.