Skip to main content

ApprovalIdentityRecord

Identity Record Object

Properties

NameTypeDescriptionNotes
identity_idstrIdentity ID.[optional]
typeEnum [ 'IDENTITY' ]Type of identity.[optional]
namestrName of the identity.[optional]
actioned_as[]ApprovalReferenceList of references representing actions taken by the identity.[optional]
members[]ApprovalReferenceList of references representing members of the identity.[optional]
decision_datedatetimeDate when the decision was made.[optional]
emailstrEmail associated with the identity.[optional]
}

Example

from sailpoint.v2025.models.approval_identity_record import ApprovalIdentityRecord

approval_identity_record = ApprovalIdentityRecord(
identity_id='17e633e7d57e481569df76323169deb6a',
type='IDENTITY',
name='Jim Bob',
actioned_as=[
sailpoint.v2025.models.approval_reference.Approval Reference(
id = '64012350-8fd9-4f6c-a170-1fe123683899',
type = 'AccessRequestId',
name = 'Access Request',
email = '[email protected]',
serial_order = 0, )
],
members=[
sailpoint.v2025.models.approval_reference.Approval Reference(
id = '64012350-8fd9-4f6c-a170-1fe123683899',
type = 'AccessRequestId',
name = 'Access Request',
email = '[email protected]',
serial_order = 0, )
],
decision_date='2023-04-12T23:20:50.520Z',
email='[email protected]'
)

[Back to top]