Skip to main content
Version: Next

Get process instance (alpha)

GET 

/process-instances/:processInstanceKey

Get the process instance by the process instance key.

Note that this endpoint is an alpha feature and not enabled on Camunda clusters out of the box. The Camunda 8 API (REST) Overview page provides further details.

note

This endpoint is an alpha feature and may be subject to change in future releases.

Request

Path Parameters

    processInstanceKey int64required

    The process instance key.

Responses

The process instance is successfully returned.

Schema
    processInstanceKey int64

    The key of this process instance.

    processDefinitionId string

    The process definition ID.

    processDefinitionName string

    The process definition name.

    processDefinitionVersion int32

    The process definition version.

    processDefinitionVersionTag string

    The process definition version tag.

    processDefinitionKey int64

    The process definition key.

    parentProcessInstanceKey int64

    The parent process instance key.

    parentFlowNodeInstanceKey int64

    The parent flow node instance key.

    treePath string

    The path of keys to this process instance, separated by '/'.

    startDate date-time

    The start date.

    endDate date-time

    The end date.

    state ProcessInstanceStateEnum

    Possible values: [ACTIVE, COMPLETED, CANCELED]

    The state, one of ACTIVE, COMPLETED, CANCELED.

    hasIncident boolean

    Whether this process instance has a related incident or not.

    tenantId string

    The tenant ID.

Loading...