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.
2 parents 5b8a8c0 + f50106c commit b898835Copy full SHA for b898835
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