wfm.AdminGetProcessLocks

This job returns information about locked workflow processes.

1. Input Parameters

Name Type Required Description

OrganisationsId

STRING

Yes

ID of the organization.

2. Return Value

(INT): 0 = Job successful, otherwise error code.

3. Output Parameters

Name Type Dependency Description

Processes

BASE64

Information about locked workflow processes in XML format.

Structure of Processes
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<Processes>
  <Process Id="" Name="" LockTime="" ServerId="" ThreadId=""/>
  <Process Id="" Name="" LockTime="" ServerId="" ThreadId=""/>
</Processes>
Detailed description of Process attributes:
Id (STRING) — ID of the process.
Name (STRING) — Name of the process.
LockTime (INT) — Timestamp (when the process was locked).
ServerId (INT) — ID of the server that locked the process.
ThreadId (INT) — ID of the thread that locked the process.

4. See Also