Apigee · Schema

ExecuteIntegrationRequest

Request to execute an integration synchronously.

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

Properties

Name Type Description
triggerId string Trigger to use for the execution.
inputParameters object Input parameters for the execution.
parameterEntries array Alternative way to pass parameters.
doNotPropagateError boolean Whether to propagate errors to the caller.
requestId string Unique request ID for idempotency.
View JSON Schema on GitHub

JSON Schema

apigee-executeintegrationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecuteIntegrationRequest",
  "title": "ExecuteIntegrationRequest",
  "type": "object",
  "description": "Request to execute an integration synchronously.",
  "properties": {
    "triggerId": {
      "type": "string",
      "description": "Trigger to use for the execution."
    },
    "inputParameters": {
      "type": "object",
      "description": "Input parameters for the execution.",
      "additionalProperties": {
        "$ref": "#/components/schemas/ValueType"
      }
    },
    "parameterEntries": {
      "type": "array",
      "description": "Alternative way to pass parameters.",
      "items": {
        "$ref": "#/components/schemas/EventParameter"
      }
    },
    "doNotPropagateError": {
      "type": "boolean",
      "description": "Whether to propagate errors to the caller."
    },
    "requestId": {
      "type": "string",
      "description": "Unique request ID for idempotency."
    }
  }
}