Поделиться через


Перечисление объектов changeItemBase

Пространство имен: microsoft.graph

Важно!

API версии /beta в Microsoft Graph могут быть изменены. Использование этих API в производственных приложениях не поддерживается. Чтобы определить, доступен ли API в версии 1.0, используйте селектор версий.

Получите список объектов changeItemBase и их свойств. API возвращает Microsoft Entra объявления об изменениях и выпуски.

Этот API доступен в следующих национальных облачных развертываниях.

Глобальная служба Правительство США L4 Правительство США L5 (DOD) Китай управляется 21Vianet

Разрешения

Выберите разрешение или разрешения, помеченные как наименее привилегированные для этого API. Используйте более привилегированное разрешение или разрешения только в том случае, если это требуется приложению. Дополнительные сведения о делегированных разрешениях и разрешениях приложений см. в разделе Типы разрешений. Дополнительные сведения об этих разрешениях см. в справочнике по разрешениям.

Тип разрешения Разрешения с наименьшими привилегиями Более высокие привилегированные разрешения
Делегированные (рабочая или учебная учетная запись) ChangeManagement.Read.All Недоступно.
Делегированные (личная учетная запись Майкрософт) Не поддерживается. Не поддерживается.
Приложение ChangeManagement.Read.All Недоступно.

Любой пользователь может вызывать эти API, требования к роли администратора отсутствуют.

HTTP-запрос

GET /identity/productChanges

Необязательные параметры запросов

Этот метод поддерживает $countпараметры запроса , $filter (eq , ne, in), $orderbystartswith, , $search( $top размер страницы по умолчанию — 10 элементов, максимум — 250 элементов) $select и $skipпараметры запроса OData для настройки ответа.

Заголовки запросов

Имя Описание
Авторизация Bearer {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
        }
    ]
}