Skip to content

Commit 0dd8f5e

Browse files
authored
Update concept-certificate-based-authentication-certificateuserids.md
1 parent 4f78ab0 commit 0dd8f5e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/active-directory/authentication/concept-certificate-based-authentication-certificateuserids.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,11 @@ Authorized callers can run Microsoft Graph queries to find all the users with a
146146
To retrieve all user objects that have the value '[email protected]' in certificateUserIds:
147147

148148
```http
149-
GET https://graph.microsoft.com/v1.0/users?$filter=authorizationInfo/certificateUserIds/any(x:x eq '[email protected]')
149+
GET https://graph.microsoft.com/v1.0/users?$filter=authorizationInfo/certificateUserIds/any(x:x eq '[email protected]')&$count=true
150+
ConsistencyLevel: eventual
150151
```
151152

152-
You can also use the `eq`, `not`, and `startsWith` operators to match the filter condition.
153+
You can also use the `eq`, `not`, and `startsWith` operators to match the filter condition. To filter against the certificateUserIds object, the request must include the `$count=true` query string and the **ConsistencyLevel** header set to `eventual`.
153154

154155
## Update certificateUserIds using Microsoft Graph queries
155156

0 commit comments

Comments
 (0)