graph teams funsettings set¶
Updates fun settings of a Microsoft Teams team
Usage¶
m365 graph teams funsettings set [options]
Options¶
-i, --teamId <teamId>
- The ID of the Teams team for which to update settings
--allowGiphy [allowGiphy]
- Set to
true
to allow giphy and tofalse
to disable it --giphyContentRating [giphyContentRating]
- Settings to set content rating for giphy. Allowed values
Strict,Moderate
--allowStickersAndMemes [allowStickersAndMemes]
- Set to
true
to allow stickers and memes and tofalse
to disable them --allowCustomMemes [allowCustomMemes]
- Set to
true
to allow custom memes and tofalse
to disable them -h, --help
- output usage information
--query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text
. Defaulttext
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Examples¶
Allow giphy usage within a given Microsoft Teams team, setting the content rating for giphy to Moderate
m365 graph teams funsettings set --teamId 83cece1e-938d-44a1-8b86-918cf6151957 --allowGiphy true --giphyContentRating Moderate
Disable usage of giphy within a given Microsoft Teams team
m365 graph teams funsettings set --teamId 83cece1e-938d-44a1-8b86-918cf6151957 --allowGiphy false
Allow usage of stickers and memes within a given Microsoft Teams team
m365 graph teams funsettings set --teamId 83cece1e-938d-44a1-8b86-918cf6151957 --allowStickersAndMemes true
Disable usage custom memes within a given Microsoft Teams team
m365 graph teams funsettings set --teamId 83cece1e-938d-44a1-8b86-918cf6151957 --allowCustomMemes false