Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ApprovalIdentity.md
2025-07-30 20:42:10 +00:00

1.9 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-approval-identity ApprovalIdentity ApprovalIdentity ApprovalIdentity powershellsdk
powershell
PowerShell
sdk
ApprovalIdentity
V2025ApprovalIdentity
/tools/sdk/powershell/v2025/models/approval-identity
SDK
Software Development Kit
ApprovalIdentity
V2025ApprovalIdentity

ApprovalIdentity

Properties

Name Type Description Notes
Email String Email address. [optional]
IdentityID String Identity ID. [optional]
Members []ApprovalIdentityMembersInner List of members of a governance group. Will be omitted if the identity is not a governance group. [optional]
Name String Name of the identity. [optional]
OwnerOf []ApprovalIdentityOwnerOfInner List of owned items. For example, will show the items in which a ROLE_OWNER owns. Omitted if not an owner of anything. [optional]
SerialOrder Int64 The serial step of the identity in the approval. For example serialOrder 1 is the first identity to action in an approval request chain. Parallel approvals are set to 0. [optional]
Type Enum [ "IDENTITY", "MANAGER_OF", "GOVERNANCE_GROUP", "SOURCE_OWNER", "ROLE_OWNER", "ACCESS_PROFILE_OWNER", "ENTITLEMENT_OWNER", "APPLICATION_OWNER" ] Type of identity. [optional]

Examples

  • Prepare the resource
$ApprovalIdentity = Initialize-V2025ApprovalIdentity  -Email mail@mail.com `
 -IdentityID 17e633e7d57e481569df76323169deb6a `
 -Members null `
 -Name Jim Bob `
 -OwnerOf null `
 -SerialOrder 0 `
 -Type IDENTITY
  • Convert the resource to JSON
$ApprovalIdentity | ConvertTo-JSON

[Back to top]