Skip to main content

Identitycertified

Properties

NameTypeDescriptionNotes
certification_idstrthe id of the certification item[required]
certification_namestrthe certification item name[required]
signed_datestrthe date ceritification was signed[optional]
certifiers[]Certifierresponsethis field is deprecated and may go away[optional]
reviewers[]CertifierresponseThe list of identities who review this certification[optional]
signerCertifierresponse[optional]
event_typestrthe event type[optional]
date_timestrthe date of event[optional]
}

Example

from sailpoint.identity_history.models.identitycertified import Identitycertified

identitycertified = Identitycertified(
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.identity_history.models.certifier_response.Certifier Response(
id = '8a80828f643d484f01643e14202e206f',
display_name = 'John Snow', ),
event_type='IdentityCertified',
date_time='2019-03-08T22:37:33.901Z'
)

[Back to top]