Skip to main content

Intelcertificationhistoryevent

Certification history event. Supported eventType is IdentityCertified.

Properties

NameTypeDescriptionNotes
event_typeEnum [ 'IdentityCertified' ]Type of certification history event.[required]
date_timedatetimeEvent timestamp.[optional]
certification_idstrIdentifier of the certification.[optional]
certification_namestrDisplay name of the certification.[optional]
signed_datedatetimeTimestamp when the certification was signed.[optional]
}

Example

from sailpoint.intelligence.models.intelcertificationhistoryevent import Intelcertificationhistoryevent

intelcertificationhistoryevent = Intelcertificationhistoryevent(
event_type='IdentityCertified',
date_time='2019-03-08T22:37:33.901Z',
certification_id='2c91808a77ff216301782327a50f09bf',
certification_name='Example certification',
signed_date='2019-03-08T22:37:33.901Z'
)

[Back to top]