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

    Type Alias GetProcessDefinitionStatisticsData

    type GetProcessDefinitionStatisticsData = {
        body?: {
            filter?: {
                batchOperationId?: StringFilterProperty;
                elementId?: StringFilterProperty;
                elementInstanceState?: ElementInstanceStateFilterProperty;
                endDate?: DateTimeFilterProperty;
                errorMessage?: StringFilterProperty;
                hasElementInstanceIncident?: boolean;
                hasIncident?: boolean;
                hasRetriesLeft?: boolean;
                incidentErrorHashCode?: IntegerFilterProperty;
                parentElementInstanceKey?: ElementInstanceKeyFilterProperty;
                parentProcessInstanceKey?: ProcessInstanceKeyFilterProperty;
                processInstanceKey?: ProcessInstanceKeyFilterProperty;
                startDate?: DateTimeFilterProperty;
                state?: ProcessInstanceStateFilterProperty;
                tags?: TagSet;
                tenantId?: StringFilterProperty;
                variables?: VariableValueFilterProperty[];
            } & { $or?: BaseProcessInstanceFilterFields[] };
        };
        path: { processDefinitionKey: ProcessDefinitionKey };
        query?: never;
        url: "/process-definitions/{processDefinitionKey}/statistics/element-instances";
    }
    Index

    Properties

    Properties

    body?: {
        filter?: {
            batchOperationId?: StringFilterProperty;
            elementId?: StringFilterProperty;
            elementInstanceState?: ElementInstanceStateFilterProperty;
            endDate?: DateTimeFilterProperty;
            errorMessage?: StringFilterProperty;
            hasElementInstanceIncident?: boolean;
            hasIncident?: boolean;
            hasRetriesLeft?: boolean;
            incidentErrorHashCode?: IntegerFilterProperty;
            parentElementInstanceKey?: ElementInstanceKeyFilterProperty;
            parentProcessInstanceKey?: ProcessInstanceKeyFilterProperty;
            processInstanceKey?: ProcessInstanceKeyFilterProperty;
            startDate?: DateTimeFilterProperty;
            state?: ProcessInstanceStateFilterProperty;
            tags?: TagSet;
            tenantId?: StringFilterProperty;
            variables?: VariableValueFilterProperty[];
        } & { $or?: BaseProcessInstanceFilterFields[] };
    }

    Process definition element statistics request.

    Type Declaration

    path: { processDefinitionKey: ProcessDefinitionKey }

    Type Declaration

    • processDefinitionKey: ProcessDefinitionKey

      The assigned key of the process definition, which acts as a unique identifier for this process definition.

    query?: never
    url: "/process-definitions/{processDefinitionKey}/statistics/element-instances"