I'm trying to find a user in Entra by its onPremisesSamAccountName with MS Graph API. I tried couple approaches but both failed:
- using
$filter=onPremisesSamAccountName eq 'den'
which returned 0 user found - using
$search="onPremisesSamAccountName:den
which returns several users, but no actualden
among them
UPDATE: both queries have ConsistencyLevel
header set to Eventual
and also $count
query parameter set to true
.
What can be possibly wrong in those requests or how to approach the troubleshooting in my case?
I'm trying to find a user in Entra by its onPremisesSamAccountName with MS Graph API. I tried couple approaches but both failed:
- using
$filter=onPremisesSamAccountName eq 'den'
which returned 0 user found - using
$search="onPremisesSamAccountName:den
which returns several users, but no actualden
among them
UPDATE: both queries have ConsistencyLevel
header set to Eventual
and also $count
query parameter set to true
.
What can be possibly wrong in those requests or how to approach the troubleshooting in my case?
Share Improve this question edited 11 hours ago Philipp Grigoryev asked 2 days ago Philipp GrigoryevPhilipp Grigoryev 2,1433 gold badges18 silver badges24 bronze badges 2 |1 Answer
Reset to default 0To find a user in Entra by its onPremisesSamAccountName with MS Graph API.
NOTE: $filter
and $search
query parameter is only supported when the ConsistencyLevel
header is set to Eventual
and the $count
parameter is included. For more details Refer this Microsoft QnA Answer.
To add support for additional query capabilities on some properties(like onPremisesSamAccountName), those properties might be indexed in a separate store. This separate indexing improves query performance. For More details, Refer this MsDocument
Use below endpoint by using $filter
parameter:
Header:
ConsistencyLevel: Eventual
GET https://graph.microsoft/v1.0/users?$filter=onPremisesSamAccountName eq 'den'&$count=true
Use below endpoint by using $search
parameter:
Header:
ConsistencyLevel: Eventual
GET https://graph.microsoft/v1.0/users?$search="onPremisesSamAccountName:den"&$count=true
Reference:
Advanced query capabilities on Microsoft Entra ID for Users Properties
ConsistencyLevel = Eventual
, Refer this Microsoft QnA – Pratik Jadhav Commented 23 hours ago