Click or drag to resize

ProcessServicesGetProcessApprovals Method

Retrieves a list of the approvals associated with the specified process. This includes the historical records of actions taken by individual users against these approvals.

Namespace:  FactoryLogix.xTend.ProcessDefinition
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public IEnumerable<ApprovalItem> GetProcessApprovals(
	Guid sessionId,
	Guid processId
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
processId
Type: SystemGuid
The unique identifier (ID) of the process whose approvals are being requested.

Return Value

Type: IEnumerableApprovalItem
A list ApprovalItem objects representing the approvals associated with the specified process definition.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
NotFoundExceptionAn existing process with matching Id property was not found in the system.
See Also