Share via

Microsoft Graph Internal Server Error patching group with app permissions for hideFromAddressLists

Ronald van Helden 95 Reputation points
2026-01-07T12:48:17.27+00:00

Hi,

Since this morning we are getting errors from microsoft graph when patching a group settings

  • hideFromAddressLists
  • hideFromOutlookClients

we haven't changed anything on our side, and this is executed with application permissions. this is the same issue which multiple people commented on that it is occuring again. Existing previous question

The following is part of our logs.

fail: Failed to update group properties (InternalServerError):

{
   "error":{
      "code":"ErrorInternalServerError",
      "message":"An internal server error occurred. The operation failed., Value cannot be null. (Parameter 'tenant')",
      "innerError":{
         "date":"2026-01-07T12:09:58",
         "request-id":"41634dc2-80c8-45b8-933d-aa8cf5f9492c",
         "client-request-id":"30e55dfa-179c-4ccd-9dfa-f928f0013bbc"
      }
   }
}

When sending a patch request with body https://graph.microsoft.com/v1.0/groups/<guid>

{
   "@odata.type":"#microsoft.graph.group",
   "hideFromAddressLists":true,
   "hideFromOutlookClients":false
}
Microsoft Security | Microsoft Graph

8 answers

Sort by: Most helpful
  1. Ronald van Helden 95 Reputation points
    2026-01-20T09:36:33.44+00:00

    They have resolved the issue by reverting a previous change to graph, for us it is working again.

    Was this answer helpful?

    0 comments No comments

  2. Maciej Karpinski 0 Reputation points
    2026-01-12T13:00:36.49+00:00

    We have the same issue since a couple of days

    Was this answer helpful?

    0 comments No comments

  3. Sergio Argüello 5 Reputation points
    2026-01-09T13:49:41.5966667+00:00

    Same issue here. We've tried hiding unified groups from GAL via:

    • Graph query: https://graph.microsoft.com/v1.0/groups/$($groupID)
      • Same 500 internal error
    • Graph PowerShell module cmdlet: Update-MgGroup -GroupId $Group.Id -HideFromAddressLists:$true
      • Same 500 internal error
    • PnP PowerShell cmdlet: Set-PnPMicrosoft365Group -Identity $group.Id -HideFromAddressLists $true
      • No errors, but doesn't work

    We haven't tested the Exchange Online cmdlets

    The only way it worked was manually thru the GUI from https://admin.cloud.microsoft/?#/groups/

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.