Auflisten von changeItemBase-Objekten
Namespace: microsoft.graph
Wichtig
Die APIs unter der /beta
Version in Microsoft Graph können sich ändern. Die Verwendung dieser APIs in Produktionsanwendungen wird nicht unterstützt. Um festzustellen, ob eine API in v1.0 verfügbar ist, verwenden Sie die Version Selektor.
Ruft eine Liste der changeItemBase-Objekte und deren Eigenschaften ab. Die API gibt sowohl Microsoft Entra Änderungsankündigungen als auch Releases zurück.
Diese API ist in den folgenden nationalen Cloudbereitstellungen verfügbar.
Weltweiter Service | US Government L4 | US Government L5 (DOD) | China, betrieben von 21Vianet |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
Berechtigungen
Wählen Sie die Berechtigungen aus, die für diese API als am wenigsten privilegiert markiert sind. Verwenden Sie eine höhere Berechtigung oder Berechtigungen nur, wenn Ihre App dies erfordert. Ausführliche Informationen zu delegierten Berechtigungen und Anwendungsberechtigungen finden Sie unter Berechtigungstypen. Weitere Informationen zu diesen Berechtigungen finden Sie in der Berechtigungsreferenz.
Berechtigungstyp | Berechtigungen mit den geringsten Berechtigungen | Berechtigungen mit höheren Berechtigungen |
---|---|---|
Delegiert (Geschäfts-, Schul- oder Unikonto) | ChangeManagement.Read.All | Nicht verfügbar. |
Delegiert (persönliches Microsoft-Konto) | Nicht unterstützt | Nicht unterstützt |
Anwendung | ChangeManagement.Read.All | Nicht verfügbar. |
Jeder Benutzer kann diese APIs aufrufen, es gibt keine Administratorrollenanforderungen.
HTTP-Anforderung
GET /identity/productChanges
Optionale Abfrageparameter
Diese Methode unterstützt die $count
Abfrageparameter , $filter
(eq
, , ne
in
, startswith
), $orderby
, $search
( $top
Standardseitengröße beträgt 10 Elemente, maximal 250 Elemente) $select
und $skip
OData-Abfrageparameter, um die Antwort anzupassen.
Anforderungsheader
Name | Beschreibung |
---|---|
Authorization | Bearer {token}. Erforderlich. Erfahren Sie mehr über Authentifizierung und Autorisierung. |
Anforderungstext
Geben Sie keinen Anforderungstext für diese Methode an.
Antwort
Wenn die Methode erfolgreich verläuft, werden der 200 OK
Antwortcode und eine Auflistung von changeItemBase-Objekten im Antworttext zurückgegeben.
Beispiele
Anforderung
Das folgende Beispiel zeigt eine Anfrage.
GET https://graph.microsoft.com/beta/identity/productChanges
Antwort
Das folgende Beispiel zeigt die Antwort.
Hinweis: Das hier gezeigte Antwortobjekt kann zur besseren Lesbarkeit gekürzt werden.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#identity/productChanges",
"@odata.nextLink": "https://graph.microsoft.com/beta/identity/productChanges?$skip=10",
"@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET identity/productChanges?$select=changeItemService,description",
"value": [
{
"@odata.type": "#microsoft.graph.announcement",
"id": "01ec4ab4-e288-4e1c-8f8c-d5b0bc68b866",
"changeItemService": "msGraph",
"tags": [
"Identity Security"
],
"systemTags": [],
"documentationUrls": [
"https://techcommunity.microsoft.com/t5/microsoft-entra-blog/important-update-azure-ad-graph-api-retirement/ba-p/4090534"
],
"shortDescription": "Latest update on migrating your applications from Azure AD Graph to Microsoft Graph",
"title": "Migrate your apps to Microsoft Graph API",
"description": "In June of 2023, we shared an update on completion of a three-year notice period for the deprecation of the Azure AD Graph API service. The service is now in the retirement cycle and retirement (shut down) will be done with incremental stages. In the first stage of this retirement cycle, applications that are created after June 30, 2024, will receive an error (HTTP 403) for any requests to Azure AD Graph APIs ( https://graph.windows.net ). \n \n We understand that some apps may not have fully completed migration to Microsoft Graph. We are providing an optional configuration that will allow an application created after June 30, 2024, to resume use of Azure AD Graph APIs through June 2025. If you develop or distribute software that requires applications to be created as part of the installation or setup, and these applications will need to access Azure AD Graph APIs, you must prepare now to avoid interruption. \n \n We have recently begun rollout of Microsoft Entra recommendations to help monitor the status of your tenant, plus provide information about applications and service principals that are using Azure AD Graph APIs in your tenant. These new recommendations provide information to support your efforts to migrate the impacted applications and service principals to Microsoft Graph. \n \n For more information on Azure AD Graph retirement, the new recommendations for Azure AD Graph, and configuring applications created after June 30, 2024, for an extension of Azure AD Graph APIs, please click 'Learn more' below.",
"announcementDateTime": "2020-06-23T00:00:00Z",
"targetDateTime": "2024-06-30T00:00:00Z",
"impactLink": null,
"changeType": "retirement",
"isCustomerActionRequired": true
},
{
"@odata.type": "#microsoft.graph.roadmap",
"id": "0d17a065-f34c-4954-9a0a-2f9b45c5c166",
"changeItemService": "entitlementManagement",
"tags": [
""
],
"systemTags": [],
"documentationUrls": [
"https://learn.microsoft.com/en-us/entra/identity/role-based-access-control/permissions-reference#organizational-branding-administrator"
],
"shortDescription": "",
"title": "Organizational Branding role for Entra ID Company Branding",
"description": "The new Organizational Branding Administrator privileges are limited to branding, allowing you to adhere to the principle of least privilege by eliminating the need for the Global Administrator role to configure branding.",
"changeItemState": "available",
"deliveryStage": "ga",
"category": "accessControl",
"publishedDateTime": "2024-05-06T07:00:00Z",
"gotoLink": null
}
]
}