What status code should I set for UPDATE (PUT) and DELETE (e.g. product successfully updated)? 10 For a PUT request: HTTP 200, HTTP 204 should imply “resource updated successfully”....
  • April 11, 2022
  • 0 Comments
In an HTTP GET request, parameters are sent as a query string: http://example.com/page?parameter=value&also=another In an HTTP POST request, the parameters are not sent along with the URI. Where are...
  • April 11, 2022
  • 0 Comments
I’m developing a new RESTful webservice for our application. When doing a GET on certain entities, clients can request the contents of the entity. If they want to add...
  • April 10, 2022
  • 0 Comments