Skip to content

Commit 50ef0ff

Browse files
author
Simonx Xu
authored
Merge pull request #9052 from AmandaAZ/Branch-CI5821
AB#5821: Convert blog post to article
2 parents 77b331d + b342cc3 commit 50ef0ff

File tree

2 files changed

+44
-6
lines changed

2 files changed

+44
-6
lines changed

support/entra/entra-id/toc.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -291,18 +291,20 @@
291291
href: mfa/cannot-verify-account-reset-pwd.md
292292
- name: Microsoft Graph Users, Groups, and Entra APIs
293293
items:
294-
- name: Handling errors in Graph API requests with Invoke-RestMethod
295-
href: app-integration/graph-api-error-handling-invoke-restmethod.md
296-
- name: Troubleshoot Authorization RequestDenied error
297-
href: app-integration/troubleshoot-authorization-requestdenied-graph-api.md
298294
- name: 403 error when adding a user to a group
299295
href: users-groups-entra-apis/authorization-requestdenied-403-error-add-user-group.md
300296
- name: 404 error when managing objects
301297
href: app-integration/404-not-found-error-manage-objects-microsoft-graph.md
302-
- name: Use managed identities to call Graph APIs in VB.Net and C#
303-
href: users-groups-entra-apis/call-graph-api-using-managed-dentities.md
298+
- name: Change enumeration is not supported for requested tenant
299+
href: users-groups-entra-apis/delta-query-not-supported-for-aad-b2c-tenant.md
300+
- name: Handling errors in Graph API requests with Invoke-RestMethod
301+
href: app-integration/graph-api-error-handling-invoke-restmethod.md
302+
- name: Troubleshoot Authorization RequestDenied error
303+
href: app-integration/troubleshoot-authorization-requestdenied-graph-api.md
304304
- name: The memberOf API returns null values for properties
305305
href: users-groups-entra-apis/memberof-api-returns-null-properties.md
306+
- name: Use managed identities to call Graph APIs in VB.Net and C#
307+
href: users-groups-entra-apis/call-graph-api-using-managed-dentities.md
306308
- name: Getting access denied errors (Authorization)
307309
items:
308310
- name: Add an owner to an application
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: Change Enumeration Is Not Supported for Requested Tenant
3+
description: Describes an issue in which you receive the Request_UnsupportedQuery error code when you run a Microsoft Graph delta query.
4+
ms.date: 06/09/2025
5+
ms.service: entra-id
6+
ms.custom: sap:Problem with querying or provisioning resources
7+
ms.reviewer: bachoang, v-weizhu
8+
---
9+
# Error "Change enumeration is not supported for requested tenant" when running a Microsoft Graph delta query
10+
11+
This article provides a solution to an error that occurs when you run a Microsoft Graph delta query.
12+
13+
## Symptoms
14+
15+
When executing a [Microsoft Graph delta query](/graph/delta-query-overview), such as `GET https://graph.microsoft.com/beta/users/delta`, you might receive the following error response:
16+
17+
```output
18+
'error': {
19+
'code': 'Request_UnsupportedQuery',
20+
'message': 'Change enumeration is not supported for requested tenant.',
21+
'innerError': {
22+
'request-id': '<request-id>',
23+
'date': '2020-05-22T13:17:45'
24+
}
25+
}
26+
```
27+
28+
## Cause
29+
30+
This issue occurs when your tenant is an [Azure Active Directory (AD) B2C](/azure/active-directory-b2c/overview) tenant. Currently, differential or delta queries aren't supported in Azure AD B2C tenants.
31+
32+
## Solution
33+
34+
Run a delta query in a regular Microsoft Entra tenant.
35+
36+
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

0 commit comments

Comments
 (0)