For returning from a Web API 2 controller, I can return content with the response if the response is OK (status 200) like this:
public IHttpActionResult
You can use this:
return Content(HttpStatusCode.BadRequest, "Any object");