Forum Discussion
Bernd Rickenberg
Jul 18, 2017Brass Contributor
Setting Unified Group properties via API
The Set-UnifiedGroup PowerShell commandlet has a couple of interessting properties. In particular, hiding the group from the global address list (HiddenFromAddressListsEnabled) and enabling/disabling...
Matthias Habegger
Oct 03, 2018Copper Contributor
You can do that with Microsoft Graph only at creation time. I'm disabling the member notification on group adding like this:
Like this:
Url: https://graph.microsoft.com/v1.0/groups
Request Body:
--
{
"displayName": "TestGroup-01",
"groupTypes": [
"Unified"
],
"mailEnabled": true,
"mailNickname": "testgroup-01",
"resourceBehaviorOptions": [
"WelcomeEmailDisabled"
],
"securityEnabled": false,
"visibility": "Private",
}
--
Marco_Dissel
Oct 03, 2018Brass Contributor
Thanks!
The documentation does not mention this (new) property.. How did you get this information?