Interface CreateProcessInstanceRequest

interface CreateProcessInstanceRequest {
    bpmnProcessId: string;
    operationReference?: string;
    startInstructions: ProcessInstanceCreationStartInstruction[];
    tenantId?: string;
    variables: string;
    version?: number;
}

Hierarchy (view full)

Properties

bpmnProcessId: string

the BPMN process ID of the process definition

operationReference?: string

a reference key chosen by the user and will be part of all records resulted from this operation

List of start instructions. If empty (default) the process instance will start at the start event. If non-empty the process instance will apply start instructions after it has been created

tenantId?: string

the tenant id of the process definition

variables: string

JSON document that will instantiate the variables for the root variable scope of the process instance.

version?: number

the version of the process; if not specified it will use the latest version

Generated using TypeDoc