Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Importing a specific AAD Groups

Kalpana_R
New Contributor
New Contributor

Hi,

I am trying to import a few AAD Groups using the REST Connector. I have used the filter display name to get one of them(https://graph.microsoft.com/v1.0/groups?$filter=displayName eq 'XXX'). 

Is there Possible way to get multiple groups in a single call?

If yes, please provide a solution

3 REPLIES 3

Anjali_F
Visitor
Visitor

Hi,

Exactly which groups you want to import? Is there any criteria you have? 

rushikeshvartak
All-Star
All-Star

 

https://graph.microsoft.com/v1.0/groups?$filter=displayName eq 'Group1' or displayName eq 'Group2' or displayName eq 'Group3'
Filter Groups by Common Prefix

https://graph.microsoft.com/v1.0/groups?$filter=startswith(displayName, 'Team')

 Filter Groups Containing a Substring

https://graph.microsoft.com/v1.0/groups?$filter=contains(displayName, 'Project')

Complex Patterns Using and / or Conditions

https://graph.microsoft.com/v1.0/groups?$filter=startswith(displayName, 'Team') or contains(displayName, 'Project')

 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

Kalpana_R
New Contributor
New Contributor

Thank you, Its working!