resourceSpecificPermissionGrant resource type
Namespace: microsoft.graph
Declares the permission that has been granted to a specific Microsoft Entra app for an instance of a resource in Microsoft Graph.
For more information about granting apps consent to access a specific instance of a resource, see resource-specific consent.
Methods
Method | Return Type | Description |
---|---|---|
List permission grants of a chat | resourceSpecificPermissionGrant collection | List permissions that have been granted in a specific chat. |
List permission grants of a group | resourceSpecificPermissionGrant collection | List resource-specific permissions that have been granted in a specific group. |
List permission grants of a team | resourceSpecificPermissionGrant collection | List permissions that have been granted in a specific team. |
List permission grants of a user | resourceSpecificPermissionGrant collection | List resource-specific permissions that have been granted to a specific user. |
Properties
Property | Type | Description |
---|---|---|
clientId | string | ID of the Microsoft Entra app that has been granted access. Read-only. |
clientAppId | string | ID of the service principal of the Microsoft Entra app that has been granted access. Read-only. |
deletedDateTime | dateTimeOffset | Not used. |
id | string | The unique identifier of the resource-specific permission grant. Read-only. |
resourceAppId | string | ID of the Microsoft Entra app that is hosting the resource. Read-only. |
permissionType | string | The type of permission. Possible values are: Application , Delegated . Read-only. |
permission | string | The name of the resource-specific permission. Read-only. |
JSON representation
The following JSON representation shows the resource type.
{
"id": "string (identifier)",
"deletedDateTime": "dateTimeOffset",
"clientId": "string",
"clientAppId": "string",
"resourceAppId": "string",
"permissionType": "string",
"permission": "string"
}