Boomi · Schema

ExecutionRequest

Request to execute an integration process on a specific Atom.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
atomId string ID of the Atom on which to run the process.
processId string ID of the process to execute.
processProperties array Optional runtime properties to pass to the process.
View JSON Schema on GitHub

JSON Schema

boomi-executionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecutionRequest",
  "title": "ExecutionRequest",
  "type": "object",
  "description": "Request to execute an integration process on a specific Atom.",
  "required": [
    "atomId",
    "processId"
  ],
  "properties": {
    "atomId": {
      "type": "string",
      "description": "ID of the Atom on which to run the process."
    },
    "processId": {
      "type": "string",
      "description": "ID of the process to execute."
    },
    "processProperties": {
      "type": "array",
      "description": "Optional runtime properties to pass to the process.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Property name."
          },
          "value": {
            "type": "string",
            "description": "Property value."
          }
        }
      }
    }
  }
}