httpstatuses/contents/codes/412.md

23 lines
911 B
Markdown
Raw Normal View History

2015-11-06 21:39:33 +01:00
---
set: 4
code: 412
title: Precondition Failed
references:
"Rails HTTP Status Symbol": ":precondition_failed"
2016-01-27 23:08:33 +01:00
"Go HTTP Status Constant": "http.StatusPreconditionFailed"
"Symfony HTTP Status Constant": "Response::HTTP_PRECONDITION_FAILED"
"Python2 HTTP Status Constant": "httplib.PRECONDITION_FAILED"
"Python3+ HTTP Status Constant": "http.client.PRECONDITION_FAILED"
"Python3.5+ HTTP Status Constant": "http.HTTPStatus.PRECONDITION_FAILED"
2015-11-06 21:39:33 +01:00
---
One or more conditions given in the request header fields evaluated to false when tested on the server.
This response code allows the client to place preconditions on the current resource state (its current representations and metadata) and, thus, prevent the request method from being applied if the target resource is in an unexpected state.
---
* Source: [RFC7232 Section 4.2][1]
2016-01-27 23:08:33 +01:00
[1]: <http://tools.ietf.org/html/rfc7232#section-4.2>