Read users of 'Room' type from AAD

Viewed 59
1 Answers

Set the ConsistencyLevel header to eventual .

Then your query

https://graph.microsoft.com/v1.0/users?$count=true&$search="displayName:room"&$filter=endsWith(mail,'tenant.com')&$orderBy=displayName&$select=id,displayName,mail

should work

Resources:

Advanced queries

Related