adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,37 @@
---
id: form-instance-recipient
title: FormInstanceRecipient
pagination_label: FormInstanceRecipient
sidebar_label: FormInstanceRecipient
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FormInstanceRecipient']
slug: /tools/sdk/powershell/v2024/models/form-instance-recipient
tags: ['SDK', 'Software Development Kit', 'FormInstanceRecipient']
---
# FormInstanceRecipient
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | ID is a unique identifier | [optional]
**Type** | Pointer to **Enum** [ "IDENTITY" ] | Type is a FormInstanceRecipientType value IDENTITY FormInstanceRecipientIdentity | [optional]
## Examples
- Prepare the resource
```powershell
$FormInstanceRecipient = Initialize-PSSailpoint.V2024FormInstanceRecipient -Id 00000000-0000-0000-0000-000000000000 `
-Type IDENTITY
```
- Convert the resource to JSON
```powershell
$FormInstanceRecipient | ConvertTo-JSON
```
[[Back to top]](#)