Forum Discussion
Senthilrajan Kaliyaperumal
Aug 28, 2018Brass Contributor
MS Grapah API returns only 100 Office 365 groups
HI, I am using MS graph API to fetch all Office 365 groups to check if any group has single owner. If any group has single owner then we are sending an email notification to add secondary owner for ...
Azfaar
Jul 29, 2019Copper Contributor
Senthilrajan Kaliyaperumal You can use pagination https://developer.microsoft.com/en-us/graph/docs/concepts/paging
You can call this url:
https://graph.microsoft.com/beta/groups?$filter=groupTypes/any(g:g eq 'Unified')
I would suggest to call only email address and id for owners, for that you can use $select
https://graph.microsoft.com/beta/groups?$filter=groupTypes/any(g:g eq 'Unified')