ApprovalIdentityRecord
Identity Record Object
Properties
Name | Type | Description | Notes |
---|---|---|---|
identity_id | str | Identity ID. | [optional] |
type | Enum [ 'IDENTITY' ] | Type of identity. | [optional] |
name | str | Name of the identity. | [optional] |
actioned_as | []ApprovalReference | List of references representing actions taken by the identity. | [optional] |
members | []ApprovalReference | List of references representing members of the identity. | [optional] |
decision_date | datetime | Date when the decision was made. | [optional] |
str | Email 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]'
)