mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2025-form-details
|
||||
title: FormDetails
|
||||
pagination_label: FormDetails
|
||||
sidebar_label: FormDetails
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'FormDetails', 'V2025FormDetails']
|
||||
slug: /tools/sdk/powershell/v2025/models/form-details
|
||||
tags: ['SDK', 'Software Development Kit', 'FormDetails', 'V2025FormDetails']
|
||||
---
|
||||
|
||||
|
||||
# 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**](section-details) | Sections of the form | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$FormDetails = Initialize-PSSailpoint.V2025FormDetails -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
|
||||
```powershell
|
||||
$FormDetails | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user