GET {repositoryId}/Process/{id}/Actions

Gets the list of available Actions for the given Process instance.

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

List of available Actions.

Collection of Action
NameDescriptionTypeAdditional information
ActionType

ActionTypes

None.

Enabled

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ActionType": 0,
    "Enabled": true
  },
  {
    "ActionType": 0,
    "Enabled": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.openworkbpm.com/schema">
  <Action>
    <ActionType>None</ActionType>
    <Enabled>true</Enabled>
  </Action>
  <Action>
    <ActionType>None</ActionType>
    <Enabled>true</Enabled>
  </Action>
</ArrayOfAction>