@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias ModifyProcessInstanceVariableInstruction

    Instructions describing which variables should be created.

    type ModifyProcessInstanceVariableInstruction = {
        scopeId?: string;
        variables: { [key: string]: unknown };
    }
    Index

    Properties

    Properties

    scopeId?: string

    The ID of the element in which scope the variables should be created. Leave empty to create the variables in the global scope of the process instance

    variables: { [key: string]: unknown }

    JSON document that will instantiate the variables for the root variable scope of the process instance. It must be a JSON object, as variables will be mapped in a key-value fashion.