List Office 365 Admin Roles

Copper Contributor

Hi Team,

Currently we are using following Powershell Cmdlet to list all the admin roles and we are moving to Microsoft Graph API. Could you please help me with the equivalent Microsoft Graph API for the same.

 

"get-rolegroup | where-object {$_.capabilities -notcontains \"partner_managed\"} | select identity, description | fl"

 

Thank you in advance.

 

2 Replies
There is no Graph API support for Exchange admin operations, you need to stick to PowerShell at least for the foreseeable future.

Thank you@Vasil Michev