Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/WorkItems.md
2025-05-07 14:37:48 +00:00

2.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
work-items WorkItems WorkItems WorkItems powershellsdk
powershell
PowerShell
sdk
WorkItems
WorkItems
/tools/sdk/powershell/v3/models/work-items
SDK
Software Development Kit
WorkItems
WorkItems

WorkItems

Properties

Name Type Description Notes
Id String ID of the work item [optional]
RequesterId String ID of the requester [optional]
RequesterDisplayName String The displayname of the requester [optional]
OwnerId String The ID of the owner [optional]
OwnerName String The name of the owner [optional]
Created System.DateTime Time when the work item was created [optional]
Modified System.DateTime Time when the work item was last updated [optional]
Description String The description of the work item [optional]
State WorkItemStateManualWorkItems [optional]
Type WorkItemTypeManualWorkItems [optional]
RemediationItems []RemediationItemDetails A list of remediation items [optional]
ApprovalItems []ApprovalItemDetails A list of items that need to be approved [optional]
Name String The work item name [optional]
Completed System.DateTime The time at which the work item completed [optional]
NumItems Int32 The number of items in the work item [optional]
Form WorkItemsForm [optional]
Errors []String An array of errors that ocurred during the work item [optional]

Examples

  • Prepare the resource
$WorkItems = Initialize-WorkItems  -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]