Apigee · Schema

ExecuteIntegrationResponse

Response from a synchronous integration execution.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
executionId string ID of the execution.
outputParameters object Output parameters from the execution.
parameterEntries array Output parameter entries.
View JSON Schema on GitHub

JSON Schema

apigee-executeintegrationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecuteIntegrationResponse",
  "title": "ExecuteIntegrationResponse",
  "type": "object",
  "description": "Response from a synchronous integration execution.",
  "properties": {
    "executionId": {
      "type": "string",
      "description": "ID of the execution."
    },
    "outputParameters": {
      "type": "object",
      "description": "Output parameters from the execution.",
      "additionalProperties": {
        "type": "object"
      }
    },
    "parameterEntries": {
      "type": "array",
      "description": "Output parameter entries.",
      "items": {
        "$ref": "#/components/schemas/EventParameter"
      }
    }
  }
}