Im trying to use Get-AzureADUser to get a list of users that dont and do have alternate email set.
The API endpoint for this is
https://graph.microsoft.com/v1.0/users?$count=true&$filter=otherMails/$count eq 0
How do I do this in Powershell?
Thanks
Im trying to use Get-AzureADUser to get a list of users that dont and do have alternate email set.
The API endpoint for this is
https://graph.microsoft.com/v1.0/users?$count=true&$filter=otherMails/$count eq 0
How do I do this in Powershell?
Thanks
This query only works with ConsistencyLevel=eventual, and I'm not aware of any way to pass this via the Azure AD module. Use client-side filtering instead?
Thanks for getting back to me. B y client side filtering do you mean take the result of get all users and filter via bash or another language?
I would be happy to use the graph api with https://graph.microsoft.com/v1.0/users?$count=true&$filter=otherMails/$count eq 0
However I get an error when using the graph explorer.
"message": "Unsupported or invalid query filter clause specified for property 'otherMails' of resource 'User'.",
Thank you I was missing this header. Request now working as expected.
22 people are following this question.