Skip to main content

IdentityListItem

Properties

NameTypeDescriptionNotes
idstrthe identity ID[optional]
display_namestrthe display name of the identity[optional]
first_namestrthe first name of the identity[optional]
last_namestrthe last name of the identity[optional]
activeboolindicates if an identity is active or not[optional] [default to True]
deleted_datestrthe date when the identity was deleted[optional]
}

Example

from sailpoint.v2024.models.identity_list_item import IdentityListItem

identity_list_item = IdentityListItem(
id='bc693f07e7b645539626c25954c58554',
display_name='Adam Zampa',
first_name='Adam',
last_name='Zampa',
active=True,
deleted_date='2007-03-01T13:00:00.000Z'
)

[Back to top]