Our team is developing RESTFul applications...we are debating the \"BEST PRACTICE\" approach.
Should 404 status code response be returned for a filter-like query? Sa
It may be more sensible to return a 204 code, which means 'No Content'. This would be slightly more efficient as a 204 status cannot have any document content, plus you can detect the code instead of having to parse the response.