Get Status of Workflow Adapter
Request
Operation Endpoint:
GET  {workflowPath}/workflow/status 
            | Parameter | Required | Description | |
|---|---|---|---|
| Headers | Authorization | 
                            Yes |  Access Token in format "Bearer
                                         (see details
                                in Authentication API).  | 
                        
Response
Response Structure:
processInstances- number of process instances runningtasks- number of open tasksserverVersion- version of the serverhash- commit IDbranch- current branch namecommitTime- time of the commit
error- returned if an error is encountered, contains details of the issue:errorCode- 5-digit error codeerrorMessage- error messageerrorData- 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"
Example
Sample Response JSON:
{ 
"processInstances":20, "tasks":20, "status":"OK",
  "serverVersion": { "hash": "46ba3417e01084cb78a58b4dc6c5c55f7e6dc7bf", "branch":
  "master", "commitTime": "15.09.2016 @ 18:35:05 IST" },
  "activitiStatus" : "OK"
}