Skip to main content

ApprovalIdentity

Identity Object

Properties

NameTypeDescriptionNotes
idstrThe identity ID[optional]
typeEnum [ 'IDENTITY' ]Indication of what group the identity belongs to. Ie, IDENTITY, GOVERNANCE_GROUP, etc[optional]
namestrName of the identity[optional]
}

Example

from sailpoint.v2024.models.approval_identity import ApprovalIdentity

approval_identity = ApprovalIdentity(
id='85d173e7d57e496569df763231d6deb6a',
type='IDENTITY',
name='John Doe'
)

[Back to top]