I am trying to fetch GUID of ProjectWebApp.FullControl and ProjectWebAppReporting.Read and add them to Sharepoint Api group.
I tried using below command to find IDs:
$result = Get-AzureADServicePrincipal -All $true | ? { $_.DisplayName -eq "Office 365 SharePoint Online" }
$result.AppRoles | FT ID, Value
I can see Ids of permissions, like User.ReadAll, Sites.FullControl.All etc., but I cant find Ids of ProjectWebApp.FullControl and ProjectWebAppReporting.Read permissions.
Can anyone help me to get GUIDs? or where Am I going wrong?