Reputation: 5257
I have a SharePoint modern team site with an associated group. I have the url for the site. I need to get the groupid from that url. Is that possible with Microsoft Graph?
Upvotes: 0
Views: 876
Reputation: 5493
Try
https://graph.microsoft.com/v1.0/groups?$filter=mailNickname eq 'modernsitename'&$select=id
Upvotes: 2