Skip to main content

WorkItems

Properties

NameTypeDescriptionNotes
IdStringID of the work item[optional]
RequesterIdStringID of the requester[optional]
RequesterDisplayNameStringThe displayname of the requester[optional]
OwnerIdStringThe ID of the owner[optional]
OwnerNameStringThe name of the owner[optional]
CreatedSystem.DateTimeTime when the work item was created[optional]
ModifiedSystem.DateTimeTime when the work item was last updated[optional]
DescriptionStringThe description of the work item[optional]
StateWorkItemStateManualWorkItems[optional]
TypeWorkItemTypeManualWorkItems[optional]
RemediationItems[]RemediationItemDetailsA list of remediation items[optional]
ApprovalItems[]ApprovalItemDetailsA list of items that need to be approved[optional]
NameStringThe work item name[optional]
CompletedSystem.DateTimeThe time at which the work item completed[optional]
NumItemsInt32The number of items in the work item[optional]
FormWorkItemsForm[optional]
Errors[]StringAn array of errors that ocurred during the work item[optional]

Examples

  • Prepare the resource
$WorkItems = Initialize-PSSailpoint.V3WorkItems  -Id 2c9180835d2e5168015d32f890ca1581 `
-RequesterId 2c9180835d2e5168015d32f890ca1581 `
-RequesterDisplayName John Smith `
-OwnerId 2c9180835d2e5168015d32f890ca1581 `
-OwnerName Jason Smith `
-Created 2017-07-11T18:45:37.098Z `
-Modified 2018-06-25T20:22:28.104Z `
-Description Create account on source 'AD' `
-State null `
-Type null `
-RemediationItems null `
-ApprovalItems null `
-Name Account Create `
-Completed 2018-10-19T13:49:37.385Z `
-NumItems 19 `
-Form null `
-Errors [The work item ID that was specified was not found.]
  • Convert the resource to JSON
$WorkItems | ConvertTo-JSON

[Back to top]