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

    Type Alias ModifyProcessInstanceVariableInstruction

    Instruction describing which variables to create or update.

    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 at the scope defined by the scopeId. It must be a JSON object, as variables will be mapped in a key-value fashion.