GET api/GetWorkflowDetailsToProcess

Retrieves detailed workflow information for a specific item.

Request Information

URI Parameters

None.

Body Parameters

A TriggerDetailsBody object containing the inode of the item whose workflow details are to be retrieved.

TriggerDetailsBody
NameDescriptionTypeAdditional information
inode

integer

None.

option

string

None.

useCreatedById

boolean

None.

emailToValue

string

None.

assignedUsers

string

None.

assignedGroups

string

None.

multipleEmailActions

string

None.

InheritPermission

integer

None.

Request Formats

application/json, text/json, application/scim+json

Sample:
{
  "inode": 1,
  "option": "sample string 2",
  "useCreatedById": true,
  "emailToValue": "sample string 4",
  "assignedUsers": "sample string 5",
  "assignedGroups": "sample string 6",
  "multipleEmailActions": "sample string 7",
  "InheritPermission": 8
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TriggerDetailsBody'.

Response Information

Resource Description

On success: HTTP 200 OK with a dataset containing workflow metadata and step-level information. On failure: HTTP 400 Bad Request with a generic error message.

DataRowResponse
NameDescriptionTypeAdditional information
dataInfo

DataSet

None.

Response Formats

application/json, text/json

Sample:
{}

application/scim+json

Sample:
{
  "dataInfo": null
}