@@ -92,7 +92,7 @@ To create the registry key that overrides push notifications:
92
92
Identify your single target group for the schema configuration. Then use the following API endpoint to change the numberMatchingRequiredState property under featureSettings to ** enabled** , and include or exclude groups:
93
93
94
94
```
95
- https://graph.microsoft.com/v1.0 /authenticationMethodsPolicy/authenticationMethodConfigurations/MicrosoftAuthenticator
95
+ https://graph.microsoft.com/beta /authenticationMethodsPolicy/authenticationMethodConfigurations/MicrosoftAuthenticator
96
96
```
97
97
98
98
> [ !NOTE]
@@ -178,7 +178,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
178
178
//Change the Query to PATCH and Run query
179
179
180
180
{
181
- "@odata.context" : " https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodConfigurations/$entity" ,
181
+ "@odata.context" : " https://graph.microsoft.com/beta /$metadata#authenticationMethodConfigurations/$entity" ,
182
182
"@odata.type" : " #microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" ,
183
183
"id" : " MicrosoftAuthenticator" ,
184
184
"state" : " enabled" ,
@@ -195,7 +195,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
195
195
}
196
196
}
197
197
},
198
- "[email protected] " :
" https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
198
+ "[email protected] " :
" https://graph.microsoft.com/beta /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
199
199
"includeTargets" : [
200
200
{
201
201
"targetType" : " group" ,
@@ -211,7 +211,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
211
211
To confirm the change is applied, run the GET request by using the following endpoint:
212
212
213
213
``` http
214
- GET https://graph.microsoft.com/v1.0 /authenticationMethodsPolicy/authenticationMethodConfigurations/MicrosoftAuthenticator
214
+ GET https://graph.microsoft.com/beta /authenticationMethodsPolicy/authenticationMethodConfigurations/MicrosoftAuthenticator
215
215
```
216
216
217
217
#### Example of how to enable number matching for a single group
@@ -225,7 +225,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
225
225
226
226
``` json
227
227
{
228
- "@odata.context" : " https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodConfigurations/$entity" ,
228
+ "@odata.context" : " https://graph.microsoft.com/beta /$metadata#authenticationMethodConfigurations/$entity" ,
229
229
"@odata.type" : " #microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" ,
230
230
"id" : " MicrosoftAuthenticator" ,
231
231
"state" : " enabled" ,
@@ -242,7 +242,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
242
242
}
243
243
}
244
244
},
245
- "[email protected] " :
" https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
245
+ "[email protected] " :
" https://graph.microsoft.com/beta /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
246
246
"includeTargets" : [
247
247
{
248
248
"targetType" : " group" ,
@@ -257,7 +257,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
257
257
To verify, run GET again and verify the ObjectID:
258
258
259
259
``` http
260
- GET https://graph.microsoft.com/v1.0 /authenticationMethodsPolicy/authenticationMethodConfigurations/MicrosoftAuthenticator
260
+ GET https://graph.microsoft.com/beta /authenticationMethodsPolicy/authenticationMethodConfigurations/MicrosoftAuthenticator
261
261
```
262
262
263
263
#### Example of removing the excluded group from number matching
@@ -271,7 +271,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
271
271
272
272
``` json
273
273
{
274
- "@odata.context" : " https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodConfigurations/$entity" ,
274
+ "@odata.context" : " https://graph.microsoft.com/beta /$metadata#authenticationMethodConfigurations/$entity" ,
275
275
"@odata.type" : " #microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" ,
276
276
"id" : " MicrosoftAuthenticator" ,
277
277
"state" : " enabled" ,
@@ -288,7 +288,7 @@ Only users who are enabled for Microsoft Authenticator under Microsoft Authentic
288
288
}
289
289
}
290
290
},
291
- "[email protected] " :
" https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
291
+ "[email protected] " :
" https://graph.microsoft.com/beta /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
292
292
"includeTargets" : [
293
293
{
294
294
"targetType" : " group" ,
@@ -306,7 +306,7 @@ To turn number matching off, you'll need to PATCH remove **numberMatchingRequire
306
306
307
307
``` json
308
308
{
309
- "@odata.context" : " https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodConfigurations/$entity" ,
309
+ "@odata.context" : " https://graph.microsoft.com/beta /$metadata#authenticationMethodConfigurations/$entity" ,
310
310
"@odata.type" : " #microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" ,
311
311
"id" : " MicrosoftAuthenticator" ,
312
312
"state" : " enabled" ,
@@ -323,7 +323,7 @@ To turn number matching off, you'll need to PATCH remove **numberMatchingRequire
323
323
}
324
324
}
325
325
},
326
- "[email protected] " :
" https://graph.microsoft.com/v1.0 /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
326
+ "[email protected] " :
" https://graph.microsoft.com/beta /$metadata#authenticationMethodsPolicy/authenticationMethodConfigurations('MicrosoftAuthenticator')/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration/includeTargets" ,
327
327
"includeTargets" : [
328
328
{
329
329
"targetType" : " group" ,
0 commit comments