accessReviewNotificationRecipientQueryScope resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Note

This is the recommended API for access reviews. The previous version of the access reviews API is deprecated.

Specifies a static list of recipients (for example, specific users, group owners, or group members) to receive access review notifications.

Inherits from accessReviewNotificationRecipientScope.

Properties

Property Type Description
query String Represents the query for who the recipients are. For example, /groups/{group id}/members for group members and /users/{user id} for a specific user.
queryRoot String In the scenario where reviewers need to be specified dynamically, indicates the relative source of the query. This property is only required if a relative query (that is, ./manager) is specified.
queryType String Indicates the type of query. Allowed value is MicrosoftGraph.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.accessReviewNotificationRecipientQueryScope",
  "query": "String",
  "queryRoot": "String",
  "queryType": "String"
}