| 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 |
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.
| 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. |
None.
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"
}
}