@camunda8/sdk
    Preparing search index...

    Interface CreateProcessInstanceWithResultResponse<Result>

    interface CreateProcessInstanceWithResultResponse<Result> {
        bpmnProcessId: string;
        processDefinitionKey: string;
        processInstanceKey: string;
        tenantId: string;
        variables: Result;
        version: number;
    }

    Type Parameters

    • Result

    Hierarchy (View Summary)

    Index

    Properties

    bpmnProcessId: string

    the BPMN process ID of the process definition which was used to create the process instance

    processDefinitionKey: string

    the key of the process definition which was used to create the process instance

    processInstanceKey: string

    the unique identifier of the created process instance; to be used wherever a request needs a process instance key (e.g. CancelProcessInstanceRequest)

    tenantId: string

    the tenant identifier of the process definition

    variables: Result

    consisting of all visible variables to the root scope

    version: number

    the version of the process definition which was used to create the process instance