Skip to main content

IdentityCertified

Properties

NameTypeDescriptionNotes
certification_idstrthe id of the certification item[optional]
certification_namestrthe certification item name[optional]
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]
dtstrthe date of event[optional]
}

Example

from sailpoint.v2024.models.identity_certified import IdentityCertified

identity_certified = 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.v2024.models.certifier_response.CertifierResponse(
id = '8a80828f643d484f01643e14202e206f',
display_name = 'John Snow', ),
event_type='IdentityCertified',
dt='2019-03-08T22:37:33.901Z'
)

[Back to top]