What is HTTP status code 201 created?

The HTTP status code "201 Created" means that a new resource has been successfully generated on the server following an HTTP request.

What is HTTP status code 201 created?

What is the 201 Created Status Code?

The "201 Created" status code is an HTTP response status code that signifies the successful creation of a new resource on the server in response to an HTTP request. When a client sends a request that leads to the creation of a new resource, the server responds with a "201 Created" status code to indicate that the request has been fulfilled, and a new resource has been successfully created.

When is 201 Created Used?

"201 Created" is typically used when a client sends a request that results in the server creating a new resource. Here are some common scenarios where you might encounter this status code:

1. Resource Creation

When a client sends a POST request to an API endpoint with the intention of creating a new resource, such as a new user account, a blog post, or a database record, the server responds with "201 Created" to confirm that the resource has been successfully created.

2. Uploads and Attachments

In file upload scenarios, such as uploading an image or a document, the server may respond with "201 Created" to confirm the successful upload and creation of the file as a resource on the server.

3. RESTful APIs

In RESTful API design, the "201 Created" status code is commonly used to indicate that a new resource has been created as a result of a POST request to a resource collection.

Significance in Web Development

The "201 Created" status code carries significance in web development for several reasons:

1. Resource Tracking

It allows clients to confirm that a requested resource has been successfully created on the server, enabling them to track the creation of essential data.

2. Workflow Management

In web applications, this status code plays a role in managing workflows and processes that involve the creation of new resources.

3. Data Integrity

It contributes to data integrity by ensuring that resources are created successfully, preventing incomplete or erroneous data entries.

Python Code Example

Let's illustrate the use of the "201 Created" status code with a Python code example. In this example, we'll use the requests library to make a POST request to a sample API, create a new resource, and check for a "201 Created" response:

import requests

# Define the API endpoint URL
api_url = "https://jsonplaceholder.typicode.com/posts"

# Data to be sent in the POST request (sample post data)
new_post = {
    "title": "New Post Title",
    "body": "This is the body of the new post.",
    "userId": 1
}

# Send a POST request to create a new resource
response = requests.post(api_url, json=new_post)

# Check if the request was successful (status code 201)
if response.status_code == 201:
    # Parse and print the response data (assumes the response contains JSON)
    data = response.json()
    print("New Post Created with ID:", data["id"])
else:
    print("API Request Failed with Status Code:", response.status_code)

In this Python code, we make a POST request to a sample API endpoint to create a new post resource. If the response status code is "201 Created," we parse and print the response data, demonstrating how to handle a successful resource creation in a real-world scenario.