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

    Type Alias ModifyProcessInstanceData

    type ModifyProcessInstanceData = {
        body: {
            activateInstructions?: {
                ancestorElementInstanceKey?: string | ElementInstanceKey;
                elementId: ElementId;
                variableInstructions?: ModifyProcessInstanceVariableInstruction[];
            }[];
            moveInstructions?: {
                ancestorScopeInstruction?: AncestorScopeInstruction;
                sourceElementInstruction: | {
                    sourceElementId: ElementId;
                    sourceType: string;
                }
                | { sourceType: "byKey" } & SourceElementInstanceKeyInstruction;
                targetElementId: ElementId;
                variableInstructions?: ModifyProcessInstanceVariableInstruction[];
            }[];
            operationReference?: OperationReference;
            terminateInstructions?: (
                | { elementId: ElementId }
                | ProcessInstanceModificationTerminateByKeyInstruction
            )[];
        };
        path: { processInstanceKey: ProcessInstanceKey };
        query?: never;
        url: "/process-instances/{processInstanceKey}/modification";
    }
    Index

    Properties

    Properties

    body: {
        activateInstructions?: {
            ancestorElementInstanceKey?: string | ElementInstanceKey;
            elementId: ElementId;
            variableInstructions?: ModifyProcessInstanceVariableInstruction[];
        }[];
        moveInstructions?: {
            ancestorScopeInstruction?: AncestorScopeInstruction;
            sourceElementInstruction: | {
                sourceElementId: ElementId;
                sourceType: string;
            }
            | { sourceType: "byKey" } & SourceElementInstanceKeyInstruction;
            targetElementId: ElementId;
            variableInstructions?: ModifyProcessInstanceVariableInstruction[];
        }[];
        operationReference?: OperationReference;
        terminateInstructions?: (
            | { elementId: ElementId }
            | ProcessInstanceModificationTerminateByKeyInstruction
        )[];
    }

    Type Declaration

    path: { processInstanceKey: ProcessInstanceKey }

    Type Declaration

    • processInstanceKey: ProcessInstanceKey

      The key of the process instance that should be modified.

    query?: never
    url: "/process-instances/{processInstanceKey}/modification"