What http status codes should I set myself, and in what situations?
For instance, if the server receives a request to delete a non-existent entry from the database, should I return a 404 error code? Something else?
|
What http status codes should I set myself, and in what situations? For instance, if the server receives a request to delete a non-existent entry from the database, should I return a 404 error code? Something else? |
|||
|
|
Assuming you're talking about designing a RESTful API, yes it makes sense to return a |
|||||
|
|
It all depends on who the client is and what functionality you require. But I might warn against 404s, as they are so synonymous with operation failure. But this might be the right way to go in your case |
|||
|
|