Update teamsAppSettings
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.
Update the properties of a teamsAppSettings object.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Note: Only global administrators and Teams administrators can call this API.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | TeamworkAppSettings.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported |
Application | Not supported |
Note
TeamworkAppSettings.* permissions might not be visible in the Azure portal. For details and workarounds, see known issues.
HTTP request
PATCH /teamwork/teamsAppSettings
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
Content-Type | application/json. Required. |
Request body
In the request body, supply only the values for properties that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values.
The following table specifies the properties that can be updated.
Property | Type | Description |
---|---|---|
isChatResourceSpecificConsentEnabled | Boolean | Indicates whether resource-specific consent for chats/meetings has been enabled for the tenant. If true, Teams apps that are allowed in the tenant and require resource-specific permissions can be installed inside chats and meetings. If false, the installation of any Teams app that requires resource-specific permissions in a chat or a meeting will be blocked. |
Response
If successful, this method returns a 204 No Content
response code.
Examples
Example 1: Enable installation of apps that require resource-specific consent in chats/meetings.
Request
PATCH https://graph.microsoft.com/beta/teamwork/teamsAppSettings
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.teamsAppSettings",
"isChatResourceSpecificConsentEnabled": "true"
}
Response
HTTP/1.1 204 No Content
See also
Feedback
Submit and view feedback for