--- id: beta-identity-reference title: IdentityReference pagination_label: IdentityReference sidebar_label: IdentityReference sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityReference', 'BetaIdentityReference'] slug: /tools/sdk/powershell/beta/models/identity-reference tags: ['SDK', 'Software Development Kit', 'IdentityReference', 'BetaIdentityReference'] --- # IdentityReference ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Type** | [**DtoType**](dto-type) | | [optional] **Id** | **String** | Identity id | [optional] **Name** | **String** | Human-readable display name of identity. | [optional] ## Examples - Prepare the resource ```powershell $IdentityReference = Initialize-PSSailpoint.BetaIdentityReference -Type null ` -Id 2c9180a46faadee4016fb4e018c20639 ` -Name Thomas Edison ``` - Convert the resource to JSON ```powershell $IdentityReference | ConvertTo-JSON ``` [[Back to top]](#)