GET {repositoryId}/Process/{id}/Status

Gets a process status.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the Process instance.

string

Required

repositoryId

ID of the resource repository (optional).

string

Default value is

Body Parameters

None.

Response Information

Resource Description

The process status.

ProcessStatus
NameDescriptionTypeAdditional information
IsCompleted

boolean

None.

IsSuspended

boolean

None.

ExecutionStatus

string

None.

SuspensionExceptionName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsCompleted": true,
  "IsSuspended": true,
  "ExecutionStatus": "sample string 3",
  "SuspensionExceptionName": "sample string 4"
}

application/xml, text/xml

Sample:
<ProcessStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.openworkbpm.com/schema">
  <ExecutionStatus>sample string 3</ExecutionStatus>
  <IsCompleted>true</IsCompleted>
  <IsSuspended>true</IsSuspended>
  <SuspensionExceptionName>sample string 4</SuspensionExceptionName>
</ProcessStatus>