Interface ExecuteWorkflowTriggerNodeParameters

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

Properties§

Source§

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

Default: "workflowInputs"

Source§

readonly jsonExample?: string

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

Source§

readonly workflowInputs?: {
    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}