HTTP Get with 204 No Content: Is that normal - Stack Overflow I know that a 204 - No Content is okay for an HTTP POST-Request For GET request, if no data is to be sent back, is the 204 status code appropriate? Should I use 404, or just stick to 200 for success but have an empty response? The use case for this question is a Java application that I am writing for Google App Engine
What is the difference between 201 status code and 204 status code 1 Both 201 and 204 represent a successful request For a more detailed explanation, you can refer to the following documentation: 201 Created The request has been fulfilled and has resulted in one or more new resources being created
How to keep ResponseBody on 204 No Content response? The 204 (No Content) status code indicates that the server has successfully fulfilled the request and that there is no additional content to send in the response payload body
Return http 204 no content to client in ASP. NET MVC2 In an ASP net MVC 2 app that I have I want to return a 204 No Content response to a post operation Current my controller method has a void return type, but this sends back a response to the client
HTTP status code for update and delete? - Stack Overflow Is 204 a proper status to return for a PUT request, if the state is not changed effectively? For example, you ask to deactivate a user but the user is already inactive