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

    Type Alias MigrateProcessInstancesBatchOperationData

    type MigrateProcessInstancesBatchOperationData = {
        body: {
            filter: ProcessInstanceFilter;
            migrationPlan: {
                mappingInstructions: {
                    sourceElementId: ElementId;
                    targetElementId: ElementId;
                }[];
                targetProcessDefinitionKey: ProcessDefinitionKey;
            };
            operationReference?: OperationReference;
        };
        path?: never;
        query?: never;
        url: "/process-instances/migration";
    }
    Index

    Properties

    Properties

    body: {
        filter: ProcessInstanceFilter;
        migrationPlan: {
            mappingInstructions: {
                sourceElementId: ElementId;
                targetElementId: ElementId;
            }[];
            targetProcessDefinitionKey: ProcessDefinitionKey;
        };
        operationReference?: OperationReference;
    }

    Type Declaration

    • filter: ProcessInstanceFilter

      The process instance filter.

    • migrationPlan: {
          mappingInstructions: {
              sourceElementId: ElementId;
              targetElementId: ElementId;
          }[];
          targetProcessDefinitionKey: ProcessDefinitionKey;
      }

      The migration instructions describe how to migrate a process instance from one process definition to another.

      • mappingInstructions: { sourceElementId: ElementId; targetElementId: ElementId }[]

        The mapping instructions.

      • targetProcessDefinitionKey: ProcessDefinitionKey

        The target process definition key.

    • OptionaloperationReference?: OperationReference
    path?: never
    query?: never
    url: "/process-instances/migration"