Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building an application with a REST-based API and have come to the point where i'm specifying status codes for each requests.

What status code should i send for requests failing validation or where a request is trying to add a duplicate in my database?

I've looked through http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html but none of them seems right.

Is there a common practice when sending status codes?

share|improve this question
2  
See: stackoverflow.com/questions/1959947/… – deamon Jul 20 '10 at 13:39
2  
@alexn: "appropriate to my problem"? What does that mean? What is your "problem"? What doesn't "seem right"? Unless you provide information on what your "problem" is, no one can guess as to why none of the status codes "seems right". They seem right to me. – S.Lott Jul 20 '10 at 15:42
1  
@alexn: So you want an error code for invalid data and duplicate data? Is that what you meant? – S.Lott Jul 20 '10 at 19:47
3  
@S.Lott: Not sure why you think the phrase was at all unclear. I had no problem parsing it whatsoever. Since the accepted answer was posted the same minute as your first comment (and daemon clearly understood the question) taking one more minute to re-read the question and hit F5 might have been more productive than criticising the OP. – Draemon Dec 19 '11 at 2:53
2  
Open httpstatus.es, Right Click >> Pin Tab :P – SalmanPK May 24 '12 at 5:00
show 6 more comments

5 Answers

up vote 70 down vote accepted

For input validation failure: 400 Bad Request + your optional description. This is suggested in the book "RESTful Web Services". For double submit: 409 Conflict

share|improve this answer
7  
"The request could not be understood by the server due to malformed syntax"? I'd say that's not quite the case here - the request is understood, but the server can't/won't fulfill it. – Piskvor Jul 20 '10 at 13:18
1  
Yes, the request body is part of the syntax. – deamon Jul 20 '10 at 13:22
Yeah, 400 Bad Request seems to be the closest option. – alexn Jul 20 '10 at 13:24
2  
@deamon: indeed it is; what I'm saying is this: "Bad Request" would is something like "I don't know what you want me to do", not "I know what you want from me, but that is not possible for some reason" – Piskvor Jul 20 '10 at 13:26
11  
Bad request is definitely the most common response to this kind of issue. The only other alternative is 422 Unprocessable Entity. It actually comes from WebDav but it is perfectly valid to reuse any status code that has been registered with IANA. – Darrel Miller Jul 20 '10 at 19:38
show 4 more comments
  • Failed validation: 403 Forbidden ("The server understood the request, but is refusing to fulfill it"). Contrary to popular opinion, RFC2616 doesn't say "403 is only intended for failed authentication", but "403: I know what you want, but I won't do that". That condition may or may not be due to authentication.
  • Trying to add a duplicate: 409 Conflict ("The request could not be completed due to a conflict with the current state of the resource.")

You should definitely give a more detailed explanation in the response headers and/or body (e.g. with a custom header - X-Status-Reason: Validation failed).

share|improve this answer
1  
Care to provide a reason why this is not a good answer? – Piskvor Jul 20 '10 at 13:41
3  
@deamon: That is not the specification, that's Wikipedia, i.e. someone's opinion on "what HTTP status codes mean"; note that the page essentialy says "this is what Apache means with 403, this is what IIS means with 403", and nowhere does it reference the official RFC. You seem to be repeating "403 means whatever Apache says". NOT. The actual RFC (which is the relevant document, not Apache's implementation, not IIS' implementation, not anyone else's implementation) is here: w3.org/Protocols/rfc2616/rfc2616-sec10.html – Piskvor Jul 20 '10 at 14:28
17  
"10.4.4 403 Forbidden The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead." I see no emphasis there ("SHOULD/SHOULD NOT" are RFC 2119 keywords, not emphasis); that's your idea what "forbidden" means, not RFC's. – Piskvor Jul 20 '10 at 14:53
2  
IMO this should be the correct answer - thank you... – joshis Aug 6 '11 at 11:33
2  
I like this answer, but still see one small problem. According to the spec, when a 403 is returned, "the request SHOULD NOT be repeated". However, returning a 409 "is only allowed in situations where it is expected that the user might be able to resolve the conflict and resubmit the request". In the case of a duplicate, I think 403 is then more appropriate, as you cannot really resolve the conflict (except by deleting the previous instance of the resource). – pablobm Oct 14 '11 at 20:19
show 5 more comments

I recommend status code 422, "Unprocessable Entity".

share|improve this answer
1  
this is not a http status code – deamon Jul 20 '10 at 15:10
6  
Of course it is an HTTP status code, see iana.org/assignments/http-status-codes. There are more status codes than those defined in RFC 2616. – Julian Reschke Jul 20 '10 at 15:16
3  
WebDAV is a HTTP extension. "HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)" So, status code 422 is not a http status code, but a status code of an extions of http. – deamon Jul 20 '10 at 15:28
11  
deamon, that doesn't make sense. HTTP defines how to define new codes, and that's what WebDAV is doing. There's a status code registry for a reason. – Julian Reschke Jul 20 '10 at 15:32
5  
What, no 418 I'm A Teapot in the registry? I'm shocked, shocked! – Piskvor Jul 20 '10 at 15:52
show 7 more comments

200,300, 400, 500 are all very generic. IF you want generic, 400 is OK.

422 is used by an increasing number of APIs, and is even used by Rails out of the box.

No matter which you pick, someone will disagree. But I prefer 422 because I think of '400 + a textual code' as too generic as well as not as friendly for a JSON-ready parser; in contrast, a 422 with a JSON response is very explicit.

Speaking of JSON response, I tend to standardize on the Rails error response for this case, which is:

{
    "errors" :
    { 
        "arg1" : ["error msg 1", "error msg 2", ...]
        "arg2" : ["error msg 1", "error msg 2", ...]
    }
}

This format is perfect for form validation, which I consider the most complex case to support in terms of 'error reporting richness'. If your error structure is this, it will likely handle all your error reporting needs.

share|improve this answer

403: Forbidden would be the most appropriate response if they fail authentication. For a request trying to add a duplicate, 400: Bad Request would probably make the most sense.

share|improve this answer
That would be wrong. Forbidden means "not authorized". – deamon Jul 20 '10 at 13:15
4  
@deamon, @no: That is a common misconception - according to the spec linked in the question, "403 Forbidden" means "The server understood the request, but is refusing to fulfill it." - where failed authorization can be one of the reasons, but it's not the only possibility. – Piskvor Jul 20 '10 at 13:20
2  
Old thread but I thought this might help with regards to authorization - 401 Unauthorized [w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2] – Richard Ayotte May 20 '11 at 0:04
1  
@no, 401 is not authorized – andho Jun 5 '11 at 6:03
2  
@no, 403 means authorization won't help – andho Jun 5 '11 at 6:04
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.