Hi @Johan Pol
I understand you want to get a list of Azure groups where you are a member.
You can find this information in the Microsoft Entra Admin Center portal under your profile -> Groups.
Alternatively, you can use PowerShell. Replace $userid
with your user id.
Install-Module Microsoft.Graph.Users
Import-Module Microsoft.Graph.Users
Connect-MgGraph -Scopes "User.Read.All", "GroupMember.Read.All"
Get-MgUserMemberOf -UserId $userId
Hope this helps. Do let us know if you any further queries.
Thanks,
Navya.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.