Skip to main content

Intelidentityaggregate

Properties

NameTypeDescriptionNotes
IdStringIdentity Security Cloud identifier for this identity.[required]
TypeEnum [ "HUMAN" ]Identity type for the matched record.[required]
DisplayNameStringPreferred display name for the identity across administrative experiences.[optional]
DescriptionStringOptional free-text description assigned to the identity profile when present.[optional]
SubtypeEnum [ "Employee", "Non Employee", "Cannot Determine" ]NERM classification for the identity.[optional]
OwnersStringSerialized owner reference information when populated by upstream identity services.[optional]
Attributesmap[string]AnyTypeArbitrary SCIM-style attribute bag returned for the identity context view.[optional]
CreatedSystem.DateTimeTimestamp when the identity record was created in Identity Security Cloud.[optional]
ModifiedSystem.DateTimeTimestamp when the identity record was last modified in Identity Security Cloud.[optional]
AliasStringPrimary login or account alias for the identity.[optional]
EmailStringPrimary business email address for the identity.[optional]
IdentityStatusStringCurrent identity lifecycle status label from Identity Security Cloud.[optional]
IsManagerBooleanTrue when the identity is flagged as a people manager in the organization.[required]
AccountsIntelaccountssliceFirst page of accounts for the identity.[required]
PrivilegedAccessIntelprivilegedaccesssliceFull privileged access result for the identity.[required]
OutliersInteloutlierssliceRare access slice; omitted when the tenant lacks the IDA-outliers license.[optional]
AccessHistoryIntelaccesshistoryAccess-history split into access items and certifications sub-slices.[required]

Examples

  • Prepare the resource
$Intelidentityaggregate = Initialize-Intelidentityaggregate  -Id ef38f94347e94562b5bb8424a56397d8 `
-Type HUMAN `
-DisplayName Example User `
-Description Example description. `
-Subtype Employee `
-Owners governance-group-001 `
-Attributes {"department":"Engineering","region":"US"} `
-Created 2026-05-12T08:00Z `
-Modified 2026-05-12T09:15:30Z `
-Alias example.user `
-Email user@example.com `
-IdentityStatus ACTIVE `
-IsManager false `
-Accounts null `
-PrivilegedAccess null `
-Outliers null `
-AccessHistory null
  • Convert the resource to JSON
$Intelidentityaggregate | ConvertTo-JSON

[Back to top]