Skip to content

CompletedBy

Gets the Identity that completes the work item.

1
readonly Identity myWorkItem.CompletedBy

Remarks

This property is filled when the work item is committed by user. Otherwise returns null value.
When work item is processed by system (by scripting or a module type tasks), this property returns null value.

Finding and setting the Identity of a person who completed the work item:

1
$Xml.SetValue("Identity", $WorkItem.CompletedBy);

See Also