Forum Discussion
Gurdev Singh
Sep 04, 2019Iron Contributor
Office 365 Group global address list visibility using Graph API
Is there any way we can set 'global address list' visibility of a Group using Graph API? I know we can do it via PowerShell using Set-UnifiedGroup -HiddenFromAddressListsEnabled. However, we are ...
- Sep 04, 2019
Hope this is not documented anywhere. But we can set it through the resourceBehaviorOptions attribute. The following call works fine for me.
POST : https://graph.microsoft.com/v1.0/groups Body : { "description": "TestGroup", "displayName": "TestGroup", "groupTypes": [ "Unified" ], "mailEnabled": true, "mailNickname": "TestGroup", "securityEnabled": false, resourceBehaviorOptions:["HideGroupInOutlook"] }
Try beta endpoint if the v1.0 not works.
Related posts :
https://www.morgantechspace.com/2019/09/hide-office-365-group-from-gal-using-graph-api.html
https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/528
Kevin_Morgan
Sep 04, 2019Iron Contributor
Hope this is not documented anywhere. But we can set it through the resourceBehaviorOptions attribute. The following call works fine for me.
POST : https://graph.microsoft.com/v1.0/groups Body : { "description": "TestGroup", "displayName": "TestGroup", "groupTypes": [ "Unified" ], "mailEnabled": true, "mailNickname": "TestGroup", "securityEnabled": false, resourceBehaviorOptions:["HideGroupInOutlook"] }
Try beta endpoint if the v1.0 not works.
Related posts :
https://www.morgantechspace.com/2019/09/hide-office-365-group-from-gal-using-graph-api.html
https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/528