Web API Action Level Annotations

Note: The Web API action level annotations overwrite the controller level annotations.

Property

Description

Consumes

A filter that specifies both the expected type that the action receives, and the supported request content types. ContentTypes are used to select an action when there are multiple matches. This can be a list of ContentTypes separated by a comma.

Binding

Specifies the type of action method model binding.

You can select any of the following bindings from the list:

  • FromBody: The client message is from the Request body.

  • FromRoute: The client message is from the HTTP URL.

    Note: Client messages that contain reference fields are not supported.

  • FromQuery: The client message is from the HTTP URL in the form of a key value pair.

  • FromForm: The client message is from the HTTP Request body form.

  • Default: The binding attribute is not explicitly set for the model action method parameter. By default, it binds the data from the Request body.

Based on the selected value, the source binds the data to the target.

OperationID

Specifies the operation ID listed in the schema.

Produces

A filter that specifies both the expected type that the action returns, and the supported response content types. The ContentTypes value is used to set content type. This can be a list of ContentTypes separated by a comma.

ResponseTypes

A collection of response types and status codes returned by the Web API endpoint.

Route

Specifies an attribute route name of the action method. The Attribute route name value and the From Route client message fields form the complete route template.

Verb

Specifies the HTTP verb used to access the action method.

The ResponseTypes property allows you to specify the possible HTTP response types with their associated status codes. This option is available in both the orchestration root level and orchestration message handler level.

Multiple response types are allowed for the same status code. For the Open API schema version 3.0, ePortal generates the oneOf schema attribute in this circumstance. For more information on adding values to the ResponseType collection, refer to Response Type Collection Editor.