If a Restful webservice fails to update or create a resource with PUT or POST methods respectively, what should be the response code?
Should the response code for failure of PUT and POST methods be in the 200 or 500 range. And what should be the exact code and possible response message.
Edit: extending the question to GET and DELETE also
And similarly what should be the failure code for unsuccessful GET and DELETE requests.
Ex: GET /profiles/lincoln
- refers to existing profile - so returns 200
response code(correct me if wrong).
but GET /profiles/mccain
- refers to not existing profiles - so what should be response code
And similarly for delete -
Ex: DELETE /movies/starwars
- refer to existing movie so delete is successful (not sure what the success response code should be for delete - plz comment)
but: DELETE /movies/planetofhumans
- refers to non - existing movie. so what should be the response code.
Stop making it hard.
The semantics are described in RFC 7231
The actual method specified in the request doesn't matter: they all use the same semantics for each of the status codes.
You can use any media type you like for that representation - web sites have been using HTML for years. If you are looking for something JSON specific, then Problem Details for HTTP APIs may be a good choice.
404 NOT FOUND