Announcing support for new Groups properties via Microsoft Graph

Microsoft

We are excited to announce that Microsoft 365 Groups now supports more flexible methods of hiding and showing groups in any Outlook client or the address book. Two new properties have been introduced to the Group Resource Type in Microsoft Graph: hideFromOutlookClients and hideFromAddressLists. Previously, these properties could only be changed via PowerShell. We now provide access to these properties via Microsoft Graph, which will help support additional customization through Power Automate and 3rd party applications.

 

Setting hideFromOutlookClients to True (which also sets hideFromAddressLists to True) prevents the group from showing in the Outlook left-hand navigation, prevents the group name from resolving during message creation, and prevents the group from showing in the Global Address List (GAL). If hideFromOutlookClients is set to False, hideFromAddressLists will also be set to False.

 

Setting hideFromAddressLists by itself controls whether the group is hidden or shown in the GAL, but it won’t affect the Outlook left-hand navigation or name resolution during message creation. Changing hideFromAddressLists by itself does not change the value of hideFromOutlookClients.

 

The default value for both properties is False, and they are only retrieved when using $select. The following example shows how to use the GET method to retrieve values for hideFromOutlookClients and hideFromAddressLists using Graph Explorer.

 

Sample query:

https://graph.microsoft.com/v1.0/groups/ed8083cb-8540-46f9-b817-46866469695d?$select=displayName,description,hideFromOutlookClients,hideFromAddressLists 

 

image.png

image.png

 

These values can be updated using methods like PATCH, as shown in the following example:

image.png

 

In the response, hideFromOutlookClients is now set to false. Both properties are updated:

image.png

 

Updating just hideFromAddressLists will not have any effect on hideFromOutlookClients.

image.png

image.png

 

You can find detailed API documentation here.  As always, we welcome your feedback!

 

Mike McLean
Principal Program Manager
Microsoft 365 Groups

2 Replies

@Mike McLean (OFFICE) to help our beleaguered SharePoint admins manage Groups, please could we get a visual cue for what workloads are provisioning Groups? Screenshot example but a column with data is also welcome. 

 

 

 

@DazzaR I set "hideFromAddressLists' to true but group is still showing in GAL. It looks like Graph API is not working properly.