interface ExecuteWorkflowTriggerNodeParameters {
inputSource?:
| "workflowInputs"
| "jsonExample"
| "passthrough";
jsonExample?: string;
workflowInputs?: {
values: {
name: string;
type: | "string"
| "number"
| "boolean"
| "object"
| "any"
| "array";
}[];
};
}
Properties§
Source§readonly json Example?: string
readonly json Example?: string
Default: "{\n "aField": "a string",\n "aNumber": 123,\n "thisFieldAcceptsAnyType": null,\n "anArray": []\n}"
Source§readonly workflow Inputs?: {
values: {
name: string;
type:
| "string"
| "number"
| "boolean"
| "object"
| "any"
| "array";
}[];
}
readonly workflow Inputs?: {
values: {
name: string;
type:
| "string"
| "number"
| "boolean"
| "object"
| "any"
| "array";
}[];
}
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"