ASP.NET Created
last modified April 3, 2025
In this article, we explore the Created response in ASP.NET 8. This response type is essential for RESTful APIs when creating new resources.
ASP.NET is a cross-platform, high-performance framework for building modern web applications. The Created response follows REST conventions for resource creation.
Basic Definition
The Created response in ASP.NET returns HTTP status code 201, indicating successful resource creation. It typically includes the location of the new resource.
This response type is used in POST methods of RESTful APIs. It follows the HTTP protocol specification for successful creation operations.
Created responses often include both the Location header pointing to the new resource and the resource itself in the response body. This provides immediate access to the created data.
ASP.NET Created Example
The following example demonstrates a Web API controller using Created responses.
var builder = WebApplication.CreateBuilder(args); builder.Services.AddControllers(); var app = builder.Build(); app.MapControllers(); app.Run();
This sets up a basic ASP.NET application with controller support. The
MapControllers
method enables attribute routing for controllers.
using Microsoft.AspNetCore.Mvc; [ApiController] [Route("api/[controller]")] public class ProductsController : ControllerBase { private static List<Product> _products = new() { new Product(1, "Laptop", 999.99m), new Product(2, "Mouse", 19.99m), new Product(3, "Keyboard", 49.99m) }; [HttpPost] public IActionResult CreateProduct([FromBody] ProductCreateDto productDto) { if (!ModelState.IsValid) { return BadRequest(ModelState); } var newProduct = new Product( _products.Max(p => p.Id) + 1, productDto.Name, productDto.Price); _products.Add(newProduct); return CreatedAtAction( nameof(GetProductById), new { id = newProduct.Id }, newProduct); } [HttpGet("{id}")] public IActionResult GetProductById(int id) { var product = _products.FirstOrDefault(p => p.Id == id); if (product == null) return NotFound(); return Ok(product); } } public record Product(int Id, string Name, decimal Price); public record ProductCreateDto(string Name, decimal Price);
This controller demonstrates a POST method that creates a new product and returns
a Created response. The CreatedAtAction
method generates a 201
response.
The CreatedAtAction
method takes three parameters: the name of the
action to generate the URL, route values for that action, and the created
resource to include in the response body.
The example shows proper RESTful conventions by returning the location of the new resource in the Location header. Clients can immediately access the created resource using this URL.
The response includes both the new product data and the URL where it can be accessed. This provides complete information to API consumers about the creation result.
Source
Microsoft ASP.NET Web API Documentation
In this article, we have explored the Created response in ASP.NET 8. This powerful feature helps build proper RESTful APIs that follow HTTP standards.
Author
List all ASP.NET tutorials.