--- id: v2024-approval-items title: ApprovalItems pagination_label: ApprovalItems sidebar_label: ApprovalItems sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalItems', 'V2024ApprovalItems'] slug: /tools/sdk/powershell/v2024/models/approval-items tags: ['SDK', 'Software Development Kit', 'ApprovalItems', 'V2024ApprovalItems'] --- # ApprovalItems ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | Pointer to **String** | The approval item's ID | [optional] **Account** | Pointer to **String** | The account referenced by the approval item | [optional] **Application** | Pointer to **String** | The name of the application/source | [optional] **Name** | Pointer to **String** | The attribute's name | [optional] **Operation** | Pointer to **String** | The attribute's operation | [optional] **Value** | Pointer to **String** | The attribute's value | [optional] **State** | Pointer to [**WorkItemState**](work-item-state) | | [optional] ## Examples - Prepare the resource ```powershell $ApprovalItems = Initialize-PSSailpoint.V2024ApprovalItems -Id 2c9180835d2e5168015d32f890ca1581 ` -Account john.smith ` -Application Active Directory ` -Name emailAddress ` -Operation update ` -Value a@b.com ` -State null ``` - Convert the resource to JSON ```powershell $ApprovalItems | ConvertTo-JSON ``` [[Back to top]](#)