interface ExecuteWorkflowTriggerNodeParameters {
inputSource?:
| "workflowInputs"
| "jsonExample"
| "passthrough";
jsonExample?: string;
returnOutput?: "allRuns"
| "lastRunOnly";
workflowInputs?: {
values: {
name: string;
type:
| "string"
| "number"
| "boolean"
| "object"
| "any"
| "array";
}[];
};
}Properties§
§§§
readonly input Source?: "workflowInputs" | "jsonExample" | "passthrough"§
readonly json Example?: stringDefault: "{\n "aField": "a string",\n "aNumber": 123,\n "thisFieldAcceptsAnyType": null,\n "anArray": []\n}"
readonly return Output?: "allRuns" | "lastRunOnly"Choose what to send back when the last node ran multiple times (for example, after a Loop Over Items) Default: "lastRunOnly"
readonly workflow Inputs?: { ... }Define expected input fields. If no inputs are provided, all data from the calling workflow will be passed through. Default: {} Type options: {"multipleValues":true,"sortable":true,"minRequiredFields":1}
Default: "workflowInputs"