Query detailed information about a process instance with the specified ID.
/som/processInstance/{id}
Path parameters | |
---|---|
id |
Process instance ID.
Long integer type. Required. No default value. |
HTTP/1.1 200 OK
<processInstance>
<id>1</id>
<executionId>Request Process.20001</executionId>
<state>1</state>
<componentId>INC-SOM-SERVICEDESK</componentId>
<componentKey>id</componentKey>
<componentValue>1</componentValue>
<description/>
<dispexeuid>Request Process.20001</dispexeuid>
</processInstance>
processInstance subelements | |
---|---|
id |
Process instance ID.
Long integer type. |
executionId |
Execution ID of the process instance.
String type. |
state |
Execution status of the process instance. 0: Temporary data. 1: Available data.
Integer type. |
componentId |
Component ID in INC . The default value is INC-SOM-SERVICEDESK.
String type. |
componentKey |
Variable name, which is provided by the third-party service to uniquely identify the process instance for easy maintenance.
String type. |
componentValue |
Value of the variable name, which is provided by the third-party service to uniquely identify the process instance for easy maintenance.
String type. |
description |
Description of the process instance.
String type. |
dispexeuid |
Output of the execution ID for the process instance.
String type. |
Query detailed information about the process instance with ID 1.
GET http://host:8080/imcrs/som/processInstance/1 accept: application/xml ...
HTTP/1.1 200 OK Content-Type: application/xml ... <processInstance>
<id>1</id>
<executionId>Request Process.20001</executionId>
<state>1</state>
<componentId>INC-SOM-SERVICEDESK</componentId>
<componentKey>id</componentKey>
<componentValue>1</componentValue>
<description/>
<dispexeuid>Request Process.20001</dispexeuid>
</processInstance>