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.DateTime[optional]
ModifiedSystem.DateTime[optional]
DescriptionStringThe description of the work item[optional]
StateWorkItemState[optional]
TypeWorkItemType[optional]
RemediationItems[]RemediationItemDetails[optional]
ApprovalItems[]ApprovalItemDetails[optional]
NameStringThe work item name[optional]
CompletedSystem.DateTime[optional]
NumItemsInt32The number of items in the work item[optional]
Errors[]String[optional]
FormFormDetails[optional]

Examples

  • Prepare the resource
$WorkItems = Initialize-PSSailpoint.BetaWorkItems  -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 `
-Errors [The work item ID that was specified was not found.] `
-Form null
  • Convert the resource to JSON
$WorkItems | ConvertTo-JSON

[Back to top]