Skip to main content

WorkItemsForm

Properties

NameTypeDescriptionNotes
IdStringID of the form[optional]
NameStringName of the form[optional]
TitleStringThe form title[optional]
SubtitleStringThe form subtitle.[optional]
TargetUserStringThe name of the user that should be shown this form[optional]
Sections[]SectionDetailsSections of the form[optional]

Examples

  • Prepare the resource
$WorkItemsForm = Initialize-PSSailpoint.V3WorkItemsForm  -Id 2c9180835d2e5168015d32f890ca1581 `
-Name AccountSelection Form `
-Title Account Selection for John.Doe `
-Subtitle Please select from the following `
-TargetUser Jane.Doe `
-Sections null
  • Convert the resource to JSON
$WorkItemsForm | ConvertTo-JSON

[Back to top]