Interface ExecuteWorkflowTriggerNodeParameters

Source
interface ExecuteWorkflowTriggerNodeParameters {
    inputSource?:
        | "workflowInputs"
        | "jsonExample"
        | "passthrough";
    jsonExample?: string;
    returnOutput?: "allRuns"
    | "lastRunOnly";
    workflowInputs?: {
        values: {
            name: string;
            type:
                | "string"
                | "number"
                | "boolean"
                | "object"
                | "any"
                | "array";
        }[];
    };
}

Properties§

§readonly inputSource?: "workflowInputs" | "jsonExample" | "passthrough"

Default: "workflowInputs"

§readonly jsonExample?: string

Default: "{\n "aField": "a string",\n "aNumber": 123,\n "thisFieldAcceptsAnyType": null,\n "anArray": []\n}"

§readonly returnOutput?: "allRuns" | "lastRunOnly"

Choose what to send back when the last node ran multiple times (for example, after a Loop Over Items) Default: "lastRunOnly"

§readonly workflowInputs?: { ... }

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}