Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.75 KB

File metadata and controls

49 lines (40 loc) · 1.75 KB
title preApprovalDetail resource type
description A preApprovalDetail describes a list of conditions under which an app can be preapproved for consent.
author yuhko-msft
ms.localizationpriority medium
ms.subservice entra-applications
doc_type resourcePageType
ms.date 07/22/2024

preApprovalDetail resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

A preApprovalDetail describes a list of conditions under which the app has been preapproved for consent. The conditions include permissions, resource scope type, and sensitivity labels that have been tagged for the resource scope.

Properties

Property Type Description
permissions preApprovedPermissions Specifies the permissions being preapproved for consent. Required.
scopeType resourceScopeType The resource type the preapproval applies to. Possible values: group for groups and teams, or chat for chats. Required.
sensitivityLabels scopeSensitivityLabels Conditions on the sensitivity labels of the target resource scope the preapproval applies to. Required.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.preApprovalDetail",
  "scopeType": "String",
  "sensitivityLabels": {
    "@odata.type": "microsoft.graph.scopeSensitivityLabels"
  },
  "permissions": {
    "@odata.type": "microsoft.graph.preApprovedPermissions"
  }
}