PutGatewayResponseRequest

Creates a customization of a GatewayResponse of a specified response type and status code on the given RestApi.

APIs.ioEngineeringPlatform

Properties

Name Type Description
statusCode object
responseParameters object
responseTemplates object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-putgatewayresponserequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutGatewayResponseRequest",
  "title": "PutGatewayResponseRequest",
  "type": "object",
  "properties": {
    "statusCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StatusCode"
        },
        {
          "description": "The HTTP status code of the GatewayResponse."
        }
      ]
    },
    "responseParameters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MapOfStringToString"
        },
        {
          "description": "Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs."
        }
      ]
    },
    "responseTemplates": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MapOfStringToString"
        },
        {
          "description": "Response templates of the GatewayResponse as a string-to-string map of key-value pairs."
        }
      ]
    }
  },
  "description": "Creates a customization of a GatewayResponse of a specified response type and status code on the given RestApi."
}