@camunda8/sdk
    Preparing search index...

    Interface MigrationRequest

    Migrates a process instance to a new process definition. This request can contain multiple mapping instructions to define mapping between the active process instance's elements and target process definition elements.

    interface MigrationRequest {
        mappingInstructions: MigrationMappingInstruction[];
        operationReference?: number | LosslessNumber;
        processInstanceKey: string;
        targetProcessDefinitionKey: string;
    }
    Index

    Properties

    mappingInstructions: MigrationMappingInstruction[]
    operationReference?: number | LosslessNumber

    A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.

    processInstanceKey: string
    targetProcessDefinitionKey: string

    The key of process definition to migrate the process instance to.