Get Process Instance Details
Request
Operation Endpoint:
GET{workflowPath}/workflow/{tenantId}/processInstances/{processInstanceId}
Parameter | Required | Description | |
---|---|---|---|
Headers | Authorization |
Yes | Access Token in format "Bearer
(see details
in Authentication API). |
EnvironmentURL |
Yes | Reltio Environment URL. | |
Query | showProcessVariables |
No |
If |
showTaskVariables |
No |
If |
|
showTaskLocalVariables |
No |
If |
Response
Response Structure:
processInstanceId
: process instance IDprocessDefinitionId
: process definition IDprocessType
: process definition typesuspended
: is suspended (true/false)objectURIs
: list of object URIs; it will contain one object URI except for potential matchescurrentTaskId
: ID of the current open task of the process instancecurrentTaskDisplayName
: name of the current open task of the process instancetaskLocalVariables
: task local variablestaskVariables
: task variablesprocessVariables
: process variables-
error
: returned if an error is encountered, contains details of the issue:errorCode
: 5-digit error codeerrorMessage
: error message-
errorData
: details of the error:exception
: exception messagestack
: stack trace
-
innerError
: details of the error from Reltio API:errorMessage
: Reltio API error messageerrorCode
: Reltio API error codeinnerErrorData
: Reltio API inner error data
warning
: returned if the operation is completed with some minor issuesstatus
: result of the operation; possible values are "OK" or "failed"
Sample Response JSON:
{
"processInstanceId": "5",
"processDefinitionId ": "reviewDeleteAttribute:1:3",
"processType": "reviewDeleteAttribute",
"suspended": false,
"objectURIs": ["entities/e1"],
"currentTaskId": "10",
"currentTaskDisplayName": "Delete Attribute Review"
}
Sample Response JSON(Potential Matches): {
"processInstanceId": "5",
"processDefinitionId ": "reviewPotentialMatch:1:3",
"processType": "reviewPotentialMatch",
"suspended": false "objectURIs": ["entities/e1", "entities/e2"]
"currentTaskId": "10",
"currentTaskDisplayName": "Match Review"
}