interface ExecuteWorkflowTriggerNodeParameters {
inputSource?:
| "workflowInputs"
| "jsonExample"
| "passthrough";
jsonExample?: string;
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 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"