Skip to main content

IdentityListItem

Properties

NameTypeDescriptionNotes
IdStringthe identity ID[optional]
DisplayNameStringthe display name of the identity[optional]
FirstNameStringthe first name of the identity[optional]
LastNameStringthe last name of the identity[optional]
ActiveBooleanindicates if an identity is active or not[optional] [default to $true]
DeletedDateStringthe date when the identity was deleted[optional]

Examples

  • Prepare the resource
$IdentityListItem = Initialize-PSSailpoint.V2024IdentityListItem  -Id bc693f07e7b645539626c25954c58554 `
-DisplayName Adam Zampa `
-FirstName Adam `
-LastName Zampa `
-Active true `
-DeletedDate 2007-03-01T13:00:00.000Z
  • Convert the resource to JSON
$IdentityListItem | ConvertTo-JSON

[Back to top]