Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/IdentityHistoryResponse.md
2025-02-20 12:59:19 -05:00

1.5 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
beta-identity-history-response IdentityHistoryResponse IdentityHistoryResponse IdentityHistoryResponse pythonsdk
python
Python
sdk
IdentityHistoryResponse
BetaIdentityHistoryResponse
/tools/sdk/python/beta/models/identity-history-response
SDK
Software Development Kit
IdentityHistoryResponse
BetaIdentityHistoryResponse

IdentityHistoryResponse

Properties

Name Type Description Notes
id str the identity ID [optional]
display_name str the display name of the identity [optional]
snapshot str the date when the identity record was created [optional]
deleted_date str the date when the identity was deleted [optional]
access_item_count map[string]int A map containing the count of each access item [optional]
attributes map[string]object A map containing the identity attributes [optional]
}

Example

from sailpoint.beta.models.identity_history_response import IdentityHistoryResponse

identity_history_response = IdentityHistoryResponse(
id='bc693f07e7b645539626c25954c58554',
display_name='Adam Zampa',
snapshot='2007-03-01T13:00:00.000Z',
deleted_date='2007-03-01T13:00:00.000Z',
access_item_count={app=0, role=2, entitlement=4, accessProfile=3, account=1},
attributes={jobTitle=HR Manager, location=NYC, firstname=Adam, lastname=Zampa, department=HR}
)

[Back to top]