v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-14120262383.5 KB

Represents an update integration response.

patch/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}

Path parameters

restapi_idstring required

The string identifier of the associated RestApi.

resource_idstring required

Specifies an update integration response request's resource identifier.

http_methodstring required

Specifies an update integration response request's HTTP method.

status_codestring required

The status code.

Specifies an update integration response request's status code.

Request body

Response

Success

statusCodestring

Specifies the status code that is used to map the integration response to an existing MethodResponse.

selectionPatternstring

Specifies the regular expression (regex) pattern used to choose an integration response based on the response from the back end. For example, if the success response returns nothing and the error response returns some string, you could use the <code>.+</code> regex to match error response. However, make sure that the error response does not contain any newline (<code>\n</code>) character in such cases. If the back end is an AWS Lambda function, the AWS Lambda function error header is matched. For all other HTTP and AWS back ends, the HTTP status code is matched.

responseParametersobject

A key-value map specifying response parameters that are passed to the method response from the back end. The key is a method response header parameter name and the mapped value is an integration response header value, a static value enclosed within a pair of single quotes, or a JSON expression from the integration response body. The mapping key must match the pattern of <code>method.response.header.{name}</code>, where <code>name</code> is a valid and unique header name. The mapped non-static value must match the pattern of <code>integration.response.header.{name}</code> or <code>integration.response.body.{JSON-expression}</code>, where <code>name</code> is a valid and unique response header name and <code>JSON-expression</code> is a valid JSON expression without the <code>$</code> prefix.

responseTemplatesobject

Specifies the templates used to transform the integration response body. Response templates are represented as a key/value map, with a content-type as the key and a template as the value.

contentHandling'CONVERT_TO_BINARY' | 'CONVERT_TO_TEXT'
<p>Specifies how to handle response payload content type conversions. Supported values are <code>CONVERT_TO_BINARY</code> and <code>CONVERT_TO_TEXT</code>, with the following behaviors:</p> <p>If this property is not defined, the response payload will be passed through from the integration response to the method response without modification.</p>