mirror of
https://github.com/rmaake1/httpstatuses.git
synced 2024-11-02 00:32:36 +01:00
62df9e637c
* Add Python status constants * Add Python 2, Python 3+, Python 3.5+ status constants
26 lines
1.0 KiB
Markdown
26 lines
1.0 KiB
Markdown
---
|
|
set: 2
|
|
code: 201
|
|
title: Created
|
|
references:
|
|
"Rails HTTP Status Symbol": ":created"
|
|
"Go HTTP Status Constant": "http.StatusCreated"
|
|
"Symfony HTTP Status Constant": "Response::HTTP_CREATED"
|
|
"Python2 HTTP Status Constant": "httplib.CREATED"
|
|
"Python3+ HTTP Status Constant": "http.client.CREATED"
|
|
"Python3.5+ HTTP Status Constant": "http.HTTPStatus.CREATED"
|
|
---
|
|
|
|
The request has been fulfilled and has resulted in one or more new resources being created.
|
|
|
|
The primary resource created by the request is identified by either a Location header field in the response or, if no Location field is received, by the effective request URI.
|
|
|
|
The 201 response payload typically describes and links to the resource(s) created. See [Section 7.2 of RFC7231][2] for a discussion of the meaning and purpose of validator header fields, such as ETag and Last-Modified, in a 201 response.
|
|
|
|
---
|
|
|
|
* Source: [RFC7231 Section 6.3.2][1]
|
|
|
|
[1]: <http://tools.ietf.org/html/rfc7231#section-6.3.2>
|
|
[2]: <http://tools.ietf.org/html/rfc7231#section-7.2
|