Skip to main content

Reviewer

Details of the reviewer for a certification.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY', 'GOVERNANCE_GROUP' ]Reviewer's DTO type.[required]
idstrReviewer's ID.[required]
namestrReviewer's display name.[required]
emailstrReviewing identity's email. This is only applicable to reviewers of the IDENTITY type.[optional]
}

Example

from sailpoint.beta.models.reviewer import Reviewer

reviewer = Reviewer(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels',
email='[email protected]'
)

[Back to top]