Hi,
via a Web API I want to read the rights a user/mail recipient has to read a Microsoft Information Protection Label. The information I need is stored in the value with key LabelActions when using the PowerShellApproach:
Install-Module ExchangeOnlineManagement
Import-Module ExchangeOnlineManagement
Connect-IPPSSession -UserPrincipalName
Get-Label -Identity "" | Format-List
This works fine, however for my usecase I want to get this information via Graph API. Is there a request that makes this possible? There seem to be options like this to get this:
Can I get the LabelActions via graph and if so what would be the correct request? Thanks!