| title | List permissionGrants of a chat |
|---|---|
| description | Retrieve permissionGrants of a chat. |
| author | akjo |
| ms.localizationpriority | high |
| ms.subservice | teams |
| doc_type | apiPageType |
| ms.date | 04/05/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has.
[!INCLUDE national-cloud-support]
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
Note
The TeamsAppInstallation.Read.Chat and Chat.Manage.Chat permissions use resource-specific consent.
GET /chats/{chat-id}/permissionGrantsThis operation doesn't support the OData query parameters to customize the response.
| Header | Value |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a list of resourceSpecificPermissionGrant objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/chats/19:089ac694c48647c68035aae675cf78ab@thread.v2/permissionGrants
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context":"https://graph.microsoft.com/beta/$metadata#permissionGrants",
"value":[
{
"id":"Y2VkZGEyMWUtYTUwZS00ZDI3LWEyZjAtOTk0MTMwMGY3Y2I1IyNDaGF0U2V0dGluZ3MuUmVhZFdyaXRlLkNoYXQjI0FwcGxpY2F0aW9u",
"clientAppId":"fdebf36e-8b3a-4b00-99fb-2e4d1da706d6",
"resourceAppId":"00000003-0000-0000-c000-000000000000",
"clientId":"771b9da9-2260-41eb-a587-4d936e4aa08c",
"permissionType":"Application",
"permission":"ChatSettings.ReadWrite.Chat"
},
{
"id":"Y2VkZGEyMWUtYTUwZS00ZDI3LWEyZjAtOTk0MTMwMGY3Y2I1IyNUZWFtc0FwcEluc3RhbGxhdGlvbi5SZWFkLkNoYXQjI0FwcGxpY2F0aW9u",
"clientAppId":"fdebf36e-8b3a-4b00-99fb-2e4d1da706d6",
"resourceAppId":"00000003-0000-0000-c000-000000000000",
"clientId":"771b9da9-2260-41eb-a587-4d936e4aa08c",
"permissionType":"Application",
"permission":"TeamsAppInstallation.Read.Chat"
},
{
"id":"Y2VkZGEyMWUtYTUwZS00ZDI3LWEyZjAtOTk0MTMwMGY3Y2I1IyNUZWFtc1RhYi5EZWxldGUuQ2hhdCMjQXBwbGljYXRpb24=",
"clientAppId":"fdebf36e-8b3a-4b00-99fb-2e4d1da706d6",
"resourceAppId":"00000003-0000-0000-c000-000000000000",
"clientId":"771b9da9-2260-41eb-a587-4d936e4aa08c",
"permissionType":"Application",
"permission":"TeamsTab.Delete.Chat"
},
{
"id":"ZmNmMGMzNjQtMWY1ZS00MDVjLThiN2QtNjI2YmRmOWQyZjI1IyNDaGF0U2V0dGluZ3MuUmVhZC5DaGF0IyNBcHBsaWNhdGlvbg==",
"clientAppId":"69024002-35ae-4574-a219-f261183580b4",
"resourceAppId":"00000003-0000-0000-c000-000000000000",
"clientId":"74c92190-dc0e-485a-81c6-fdffd4aadfd8",
"permissionType":"Application",
"permission":"ChatSettings.Read.Chat"
}
]
}