REST API - getProcessInstanceStatus

The table summarizes the REST API - getProcessInstanceStatus.

Request

Format
GET <baseurl>/process/status/<processid>
Path parameters processid: Unique ID of the process instance whose status is to be returned. Can be obtained from listProcessInstances , queryProcessInstances , and queryProcessInstancesAlt .

Response

JSON Returns a JSON representation of the content in the getProcessInstanceStatusOutput element.
XML Returns the content in the getProcessInstanceStatusOutput element (from the ProcessManagement schema).

Example

Request
GET <baseurl>/process/status/pvm:0a12a
Response
{
   "processQName": {
      "moduleName": null,
      "processName": "SalesCallbackProcess",
      "version": null
   },
   "id": "pvm:0a12a",
   "state": "ACTIVE",
   "startTime": "2013-01-17T14:44:58.130-08:00",
   "waitingWorkCount": "1",
   "parentProcessID": null
}