Should I return a 401 or a 405 response code to a REST API user without sufficient access?

api, http, http-status-codes, httpresponse, rest

Solution

`405 Method Not Allowed` should only be used if you don't support the method. It shouldn't be used to tell the client that they cannot use this method.

So the only good HTTP code in your case would be `401 Unauthorized`. It indicates the client that the method exists and that they need to login to access it.

Problem

I'm developing an API which will also have an authentication/authorization component. Anybody, regardless of authentication status, will be able to write (POST), but depending on if you are unauthenticated, authenticated as a normal user or authenticated as an admin and what resource you are trying to access I'm going to return different responses for GET, DELETE and PUT. I'm trying to figure out the most appropriate response code for a user who isn't authenticated and/or authorized. Keep in mind http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html: Unauthorized -> 401 Forbidden -> 403 Method Not Allowed -> 405 Let's use a specific examples: - John Doe is unauthenticated, on DELETE should he receive a 401 or a 405? - Amy is authenticated but not authorized, on DELETE should she receive a 403 or a 405? (Keep in mind that even though John and Amy are forbidden or unauthorized that doesn't mean they arent able to access the same resource with a different HTTP VERB.) Thanks.

Original source

Related problems