Hello,
I am working with Identity Governace Access Package Custom Extentions, and I have found a way to find the assosicated SharePoint site for the Team I am giving access to. I am doing to do some list orientated actions on the site. Everything was working fine with the graph call
https://graph.microsoft.com/beta/groups/{my-Group-ID}/sites/root
This call had the property "webUrl": "https://MyCompany.sharepoint.com/teams/MySite","
I change the geo loctaion per microsoft documentation and now I have errors thrown in my logic app.
Upon inspection I am now seeing that the "webUrl" has now change to this in my graph call
"webUrl": "https://MyCompany.sharepoint.com/teams/MySite2","
This is not the site for the Group at all. The new site is https://MyCompanygbr.sharepoint.com/teams/MySite.
When I do the same call from powershell I get the correct siteURl with Get-SPOUnifiedGroup -GroupAlias $Group
So first off why am I seeing a site that apparently got created when we moved the geo location and is not assoiscated with the Team. And, how do I get the same properties that I get with
Get-SPOUnifiedGroup -GroupAlias $Group
Thanks in advance.