changeItemBase オブジェクトを一覧表示する
名前空間: microsoft.graph
重要
Microsoft Graph の /beta
バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。
changeItemBase オブジェクトとそのプロパティの一覧を取得します。 API は、変更のお知らせとリリースMicrosoft Entra両方を返します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。
アクセス許可の種類 | 最小特権アクセス許可 | より高い特権のアクセス許可 |
---|---|---|
委任 (職場または学校のアカウント) | ChangeManagement.Read.All | 注意事項なし。 |
委任 (個人用 Microsoft アカウント) | サポートされていません。 | サポートされていません。 |
アプリケーション | ChangeManagement.Read.All | 注意事項なし。 |
どのユーザーもこれらの API を呼び出すことができます。管理者ロールの要件はありません。
HTTP 要求
GET /identity/productChanges
オプションのクエリ パラメーター
このメソッドは、 $count
、 $filter
(eq
、 ne
、 in
、 startswith
)、 $orderby
、 $search
、 $top
(既定のページ サイズは 10 項目、最大は 250 項目)、 $select
および $skip
OData クエリ パラメーター をサポートし、応答をカスタマイズするのに役立ちます。
要求ヘッダー
名前 | 説明 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
要求本文
このメソッドには、要求本文を指定しません。
応答
成功した場合、このメソッドは 200 OK
応答コードと、応答本文の changeItemBase オブジェクトのコレクションを返します。
例
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/beta/identity/productChanges
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
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
}
]
}