AspNetCore.Docs/aspnetcore/web-api/index.md

14 KiB

title author description monikerRange ms.author ms.custom ms.date uid
Create web APIs with ASP.NET Core scottaddie Learn the basics of creating a web API in ASP.NET Core. >= aspnetcore-2.1 scaddie mvc 05/07/2019 web-api/index

Create web APIs with ASP.NET Core

By Scott Addie and Tom Dykstra

ASP.NET Core supports creating RESTful services, also known as web APIs, using C#. To handle requests, a web API uses controllers. Controllers in a web API are classes that derive from ControllerBase. This article shows how to use controllers for handling API requests.

View or download sample code. (How to download).

ControllerBase class

A web API has one or more controller classes that derive from xref:Microsoft.AspNetCore.Mvc.ControllerBase. For example, the web API project template creates a Values controller:

[!code-csharp]

Don't create a web API controller by deriving from the xref:Microsoft.AspNetCore.Mvc.Controller base class. Controller derives from ControllerBase and adds support for views, so it's for handling web pages, not web API requests. There's an exception to this rule: if you plan to use the same controller for both views and APIs, derive it from Controller.

The ControllerBase class provides many properties and methods that are useful for handling HTTP requests. For example, ControllerBase.CreatedAtAction returns a 201 status code:

[!code-csharp]

Here are some more examples of methods that ControllerBase provides.

Method Notes
xref:Microsoft.AspNetCore.Mvc.ControllerBase.BadRequest* Returns 400 status code.
xref:Microsoft.AspNetCore.Mvc.ControllerBase.NotFound* Returns 404 status code.
xref:Microsoft.AspNetCore.Mvc.ControllerBase.PhysicalFile* Returns a file.
xref:Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync* Invokes model binding.
xref:Microsoft.AspNetCore.Mvc.ControllerBase.TryValidateModel* Invokes model validation.

For a list of all available methods and properties, see xref:Microsoft.AspNetCore.Mvc.ControllerBase.

Attributes

The xref:Microsoft.AspNetCore.Mvc namespace provides attributes that can be used to configure the behavior of web API controllers and action methods. The following example uses attributes to specify the HTTP method accepted and the status codes returned:

[!code-csharp]

Here are some more examples of attributes that are available.

Attribute Notes
[Route] Specifies URL pattern for a controller or action.
[Bind] Specifies prefix and properties to include for model binding.
[HttpGet] Identifies an action that supports the HTTP GET method.
[Consumes] Specifies data types that an action accepts.
[Produces] Specifies data types that an action returns.

For a list that includes the available attributes, see the xref:Microsoft.AspNetCore.Mvc namespace.

ApiController attribute

The [ApiController] attribute can be applied to a controller class to enable API-specific behaviors:

These features require a compatibility version of 2.1 or later.

ApiController on specific controllers

The [ApiController] attribute can be applied to specific controllers, as in the following example from the project template:

[!code-csharp]

ApiController on multiple controllers

One approach to using the attribute on more than one controller is to create a custom base controller class annotated with the [ApiController] attribute. Here's an example showing a custom base class and a controller that derives from it:

[!code-csharp]

[!code-csharp]

ApiController on an assembly

If compatibility version is set to 2.2 or later, the [ApiController] attribute can be applied to an assembly. Annotation in this manner applies web API behavior to all controllers in the assembly. There's no way to opt out for individual controllers. Apply the assembly-level attribute to the Startup class as shown in the following example:

[assembly: ApiController]
namespace WebApiSample
{
    public class Startup
    {
        ...
    }
}

Attribute routing requirement

The ApiController attribute makes attribute routing a requirement. For example:

[!code-csharp]

Actions are inaccessible via conventional routes defined by xref:Microsoft.AspNetCore.Builder.MvcApplicationBuilderExtensions.UseMvc* or xref:Microsoft.AspNetCore.Builder.MvcApplicationBuilderExtensions.UseMvcWithDefaultRoute* in Startup.Configure.

Automatic HTTP 400 responses

The ApiController attribute makes model validation errors automatically trigger an HTTP 400 response. Consequently, the following code is unnecessary in an action method:

if (!ModelState.IsValid)
{
    return BadRequest(ModelState);
}

Default BadRequest response

With a compatibility version of 2.2 or later, the default response type for HTTP 400 responses is xref:Microsoft.AspNetCore.Mvc.ValidationProblemDetails. The ValidationProblemDetails type complies with the RFC 7807 specification.

To change the default response to xref:Microsoft.AspNetCore.Mvc.SerializableError, set the SuppressUseValidationProblemDetailsForInvalidModelStateResponses property to true in Startup.ConfigureServices, as shown in the following example:

[!code-csharp]

Customize BadRequest response

To customize the response that results from a validation error, use xref:Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.InvalidModelStateResponseFactory. Add the following highlighted code after services.AddMvc().SetCompatibilityVersion:

[!code-csharp]

Log automatic 400 responses

See How to log automatic 400 responses on model validation errors (aspnet/AspNetCore.Docs #12157).

Disable automatic 400

To disable the automatic 400 behavior, set the xref:Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.SuppressModelStateInvalidFilter property to true. Add the following highlighted code in Startup.ConfigureServices after services.AddMvc().SetCompatibilityVersion:

[!code-csharp]

Binding source parameter inference

A binding source attribute defines the location at which an action parameter's value is found. The following binding source attributes exist:

Attribute Binding source
[FromBody] Request body
[FromForm] Form data in the request body
[FromHeader] Request header
[FromQuery] Request query string parameter
[FromRoute] Route data from the current request
[FromServices] The request service injected as an action parameter

[!WARNING] Don't use [FromRoute] when values might contain %2f (that is /). %2f won't be unescaped to /. Use [FromQuery] if the value might contain %2f.

Without the [ApiController] attribute or binding source attributes like [FromQuery], the ASP.NET Core runtime attempts to use the complex object model binder. The complex object model binder pulls data from value providers in a defined order.

In the following example, the [FromQuery] attribute indicates that the discontinuedOnly parameter value is provided in the request URL's query string:

[!code-csharp]

The [ApiController] attribute applies inference rules for the default data sources of action parameters. These rules save you from having to identify binding sources manually by applying attributes to the action parameters. The binding source inference rules behave as follows:

FromBody inference notes

[FromBody] isn't inferred for simple types such as string or int. Therefore, the [FromBody] attribute should be used for simple types when that functionality is needed.

When an action has more than one parameter bound from the request body, an exception is thrown. For example, all of the following action method signatures cause an exception:

  • [FromBody] inferred on both because they're complex types.

    [HttpPost]
    public IActionResult Action1(Product product, Order order)
    
  • [FromBody] attribute on one, inferred on the other because it's a complex type.

    [HttpPost]
    public IActionResult Action2(Product product, [FromBody] Order order)
    
  • [FromBody] attribute on both.

    [HttpPost]
    public IActionResult Action3([FromBody] Product product, [FromBody] Order order)
    

[!NOTE] In ASP.NET Core 2.1, collection type parameters such as lists and arrays are incorrectly inferred as [FromQuery]. The [FromBody] attribute should be used for these parameters if they are to be bound from the request body. This behavior is corrected in ASP.NET Core 2.2 or later, where collection type parameters are inferred to be bound from the body by default.

Disable inference rules

To disable binding source inference, set xref:Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.SuppressInferBindingSourcesForParameters to true. Add the following code in Startup.ConfigureServices after services.AddMvc().SetCompatibilityVersion:

[!code-csharp]

Multipart/form-data request inference

The [ApiController] attribute applies an inference rule when an action parameter is annotated with the [FromForm] attribute: the multipart/form-data request content type is inferred.

To disable the default behavior, set xref:Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.SuppressConsumesConstraintForFormFileParameters to true in Startup.ConfigureServices, as shown in the following example:

[!code-csharp]

Problem details for error status codes

When the compatibility version is 2.2 or later, MVC transforms an error result (a result with status code 400 or higher) to a result with xref:Microsoft.AspNetCore.Mvc.ProblemDetails. The ProblemDetails type is based on the RFC 7807 specification for providing machine-readable error details in an HTTP response.

Consider the following code in a controller action:

[!code-csharp]

The HTTP response for NotFound has a 404 status code with a ProblemDetails body. For example:

{
    type: "https://tools.ietf.org/html/rfc7231#section-6.5.4",
    title: "Not Found",
    status: 404,
    traceId: "0HLHLV31KRN83:00000001"
}

Customize ProblemDetails response

Use the ClientErrorMapping property to configure the contents of the ProblemDetails response. For example, the following code updates the type property for 404 responses:

[!code-csharp]

Disable ProblemDetails response

The automatic creation of ProblemDetails is disabled when the SuppressMapClientErrors property is set to true. Add the following code in Startup.ConfigureServices:

[!code-csharp]

Additional resources