--- id: v2024-account-status-changed title: AccountStatusChanged pagination_label: AccountStatusChanged sidebar_label: AccountStatusChanged sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'AccountStatusChanged', 'V2024AccountStatusChanged'] slug: /tools/sdk/powershell/v2024/models/account-status-changed tags: ['SDK', 'Software Development Kit', 'AccountStatusChanged', 'V2024AccountStatusChanged'] --- # AccountStatusChanged ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **EventType** | **String** | the event type | [optional] **IdentityId** | **String** | the identity id | [optional] **Dt** | **String** | the date of event | [optional] **Account** | [**AccountStatusChangedAccount**](account-status-changed-account) | | [optional] **StatusChange** | [**AccountStatusChangedStatusChange**](account-status-changed-status-change) | | [optional] ## Examples - Prepare the resource ```powershell $AccountStatusChanged = Initialize-PSSailpoint.V2024AccountStatusChanged -EventType null ` -IdentityId null ` -Dt null ` -Account null ` -StatusChange null ``` - Convert the resource to JSON ```powershell $AccountStatusChanged | ConvertTo-JSON ``` [[Back to top]](#)