Graph – Access Review
I’ve been trying to modify my create access review script to include an email address to the NotificationRecipientScope. Need to specify at end of review, send notification to email address removed for privacy reasons.
Does anybody know how to correctly implement this into the current ps params?
additionalNotificationRecipients = @(
@{
notificationTemplateType = “CompletedAdditionalRecipients”
recipients = @(
@{
“@odata.type” = “#microsoft.graph.accessReviewNotificationRecipientScope”
notificationRecipients = @(
@{
notificationRecipientEmail = “email address removed for privacy reasons”
}
)
}
)
}
)
I’ve been trying to modify my create access review script to include an email address to the NotificationRecipientScope. Need to specify at end of review, send notification to email address removed for privacy reasons.Does anybody know how to correctly implement this into the current ps params? additionalNotificationRecipients = @(
@{
notificationTemplateType = “CompletedAdditionalRecipients”
recipients = @(
@{
“@odata.type” = “#microsoft.graph.accessReviewNotificationRecipientScope”
notificationRecipients = @(
@{
notificationRecipientEmail = “email address removed for privacy reasons”
}
)
}
)
}
) Read More