Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/FormDetails.md
2025-02-03 22:09:17 +00:00

1.2 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
form-details FormDetails FormDetails FormDetails powershellsdk
powershell
PowerShell
sdk
FormDetails
FormDetails
/tools/sdk/powershell/v3/models/form-details
SDK
Software Development Kit
FormDetails
FormDetails

FormDetails

Properties

Name Type Description Notes
Id String ID of the form [optional]
Name String Name of the form [optional]
Title String The form title [optional]
Subtitle String The form subtitle. [optional]
TargetUser String The name of the user that should be shown this form [optional]
Sections []SectionDetails Sections of the form [optional]

Examples

  • Prepare the resource
$FormDetails = Initialize-PSSailpoint.V3FormDetails  -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
$FormDetails | ConvertTo-JSON

[Back to top]