Forum Discussion
Guest permissions under settings in a Team
- May 20, 2021
Brian_H Ah I see, unfortunately not something that can be done via a setting. If it's a hard requirement then you could potentially use a scheduled Graph query to set the option to off:
Update team - Microsoft Graph v1.0 | Microsoft Docs
You would need to update the Guest Permissions with something like:
"guestSettings": { "allowCreateUpdateChannels": false }
Unfortunately it's not bullet proof but could be run on a schedule through Azure Automation or similar
- Brian_HMay 20, 2021Brass ContributorThanks but we want to allow guest access but not let them create or delete channels and do not want the Team owner to be able to check those boxes.
- SeanMcAvinueMay 20, 2021MVP
Brian_H Ah I see, unfortunately not something that can be done via a setting. If it's a hard requirement then you could potentially use a scheduled Graph query to set the option to off:
Update team - Microsoft Graph v1.0 | Microsoft Docs
You would need to update the Guest Permissions with something like:
"guestSettings": { "allowCreateUpdateChannels": false }
Unfortunately it's not bullet proof but could be run on a schedule through Azure Automation or similar
- Brian_HMay 20, 2021Brass ContributorWas afraid of that, thank you.