Skip to main content

Reviewer

Properties

NameTypeDescriptionNotes
TypeEnum [ "IDENTITY", "GOVERNANCE_GROUP" ]Reviewer's DTO type.[required]
IdStringReviewer's ID.[required]
NameStringReviewer's display name.[required]
EmailStringReviewing identity's email. This is only applicable to reviewers of the IDENTITY type.[optional]

Examples

  • Prepare the resource
$Reviewer = Initialize-PSSailpoint.BetaReviewer  -Type IDENTITY `
-Id 2c7180a46faadee4016fb4e018c20642 `
-Name Michael Michaels `
-Email reviewer@test.com
  • Convert the resource to JSON
$Reviewer | ConvertTo-JSON

[Back to top]