We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b8a8c0 commit f50106cCopy full SHA for f50106c
src/Teams/v1.0/examples/Update-MgTeamworkTeamAppSetting.md
@@ -0,0 +1,12 @@
1
+### Example 1: Update the tenant-wide teamsAppSettings for all Teams apps in the tenant
2
+```powershell
3
+Import-Module Microsoft.Graph.Teams
4
+
5
+$params = @{
6
+ "@odata.type" = "#microsoft.graph.teamsAppSettings"
7
+ allowUserRequestsForAppAccess = "true"
8
+}
9
10
+Update-MgTeamworkTeamAppSetting -BodyParameter $params
11
+```
12
+This example updates the tenant-wide teamsAppSettings for all Teams apps in the tenant
0 commit comments