Skip to main content

Identityhistoryresponse

Properties

NameTypeDescriptionNotes
idstrthe identity ID[optional]
display_namestrthe display name of the identity[optional]
snapshotstrthe date when the identity record was created[optional]
deleted_datestrthe date when the identity was deleted[optional]
access_item_countmap[string]intA map containing the count of each access item[optional]
attributesmap[string]objectA map containing the identity attributes[optional]
}

Example

from sailpoint.identity_history.models.identityhistoryresponse import Identityhistoryresponse

identityhistoryresponse = 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]