accessReviewPolicy 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.

Access review policy is a singleton that enables administrators to manage directory-level access review policies. For example, administrators can use the access review policy to enable and disable the ability of group owners to create access reviews on groups that they own.

Inherits from entity.

Methods

Method Return type Description
Get accessReviewPolicy accessReviewPolicy Read the properties and relationships of an accessReviewPolicy object.
Update accessReviewPolicy accessReviewPolicy Update the properties of an accessReviewPolicy object.

Properties

Property Type Description
description String Description for this policy. Read-only.
displayName String Display name for this policy. Read-only.
isGroupOwnerManagementEnabled Boolean If true, group owners can create and manage access reviews on groups they own.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.accessReviewPolicy",
  "displayName": "Access Review Policy",
  "description": "Policy contains directory-level access review settings.",
  "isGroupOwnerManagementEnabled": false
}