Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/GetHistoricalIdentityEvents200ResponseInner.md
2025-07-25 19:23:51 +00:00

4.8 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
v2024-get-historical-identity-events200-response-inner GetHistoricalIdentityEvents200ResponseInner GetHistoricalIdentityEvents200ResponseInner GetHistoricalIdentityEvents200ResponseInner pythonsdk
python
Python
sdk
GetHistoricalIdentityEvents200ResponseInner
V2024GetHistoricalIdentityEvents200ResponseInner
/tools/sdk/python/v2024/models/get-historical-identity-events200-response-inner
SDK
Software Development Kit
GetHistoricalIdentityEvents200ResponseInner
V2024GetHistoricalIdentityEvents200ResponseInner

GetHistoricalIdentityEvents200ResponseInner

Properties

Name Type Description Notes
certification_id str the id of the certification item [required]
certification_name str the certification item name [required]
signed_date str the date ceritification was signed [optional]
certifiers []CertifierResponse this field is deprecated and may go away [optional]
reviewers []CertifierResponse The list of identities who review this certification [optional]
signer CertifierResponse [optional]
event_type str the event type [optional]
date_time str the date of event [optional]
identity_id str the identity id [optional]
access_item AccessItemAssociatedAccessItem [required]
governance_event CorrelatedGovernanceEvent [required]
access_item_type Enum [ 'account', 'app', 'entitlement', 'role', 'accessProfile' ] the access item type [optional]
attribute_changes []AttributeChange [required]
account AccessRequestedAccount [required]
status_change AccessRequestedStatusChange [required]
}

Example

from sailpoint.v2024.models.get_historical_identity_events200_response_inner import GetHistoricalIdentityEvents200ResponseInner

get_historical_identity_events200_response_inner = GetHistoricalIdentityEvents200ResponseInner(
certification_id='2c91808a77ff216301782327a50f09bf',
certification_name='Cert name',
signed_date='2019-03-08T22:37:33.901Z',
certifiers=[{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
reviewers=[{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
signer=sailpoint.v2024.models.certifier_response.Certifier Response(
                    id = '8a80828f643d484f01643e14202e206f', 
                    display_name = 'John Snow', ),
event_type='AccountStatusChanged',
date_time='2019-03-08T22:37:33.901Z',
identity_id='8a80828f643d484f01643e14202e206f',
access_item={id=8c190e6787aa4ed9a90bd9d5344523fb, accessType=account, nativeIdentity=127999, sourceName=JDBC Entitlements Source, entitlementCount=0, displayName=Sample Name},
governance_event=sailpoint.v2024.models.correlated_governance_event.Correlated Governance Event(
                    name = 'Manager Certification for Jon Snow', 
                    date_time = '2019-03-08T22:37:33.901Z', 
                    type = 'certification', 
                    governance_id = '2c91808a77ff216301782327a50f09bf', 
                    owners = [{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}], 
                    reviewers = [{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}], 
                    decision_maker = sailpoint.v2024.models.certifier_response.Certifier Response(
                        id = '8a80828f643d484f01643e14202e206f', 
                        display_name = 'John Snow', ), ),
access_item_type='account',
attribute_changes=[
                    sailpoint.v2024.models.attribute_change.Attribute Change(
                        name = 'firstname', 
                        previous_value = 'adam', 
                        new_value = 'zampa', )
                    ],
account=sailpoint.v2024.models.access_requested_account.AccessRequested_account(
                    id = '2c91808a77ff216301782327a50f09bf', 
                    native_identity = 'dr.arden.ogahn.d', 
                    display_name = 'Adam Archer', 
                    source_id = '8a80828f643d484f01643e14202e206f', 
                    source_name = 'JDBC Entitlements Source', 
                    entitlement_count = 2, 
                    access_type = 'account', ),
status_change=sailpoint.v2024.models.access_requested_status_change.AccessRequested_statusChange(
                    previous_status = 'enabled', 
                    new_status = 'disabled', )
)

[Back to top]