Enumeración de objetos changeItemBase
Espacio de nombres: microsoft.graph
Importante
Las API de la versión /beta
de Microsoft Graph están sujetas a cambios. No se admite el uso de estas API en aplicaciones de producción. Para determinar si una API está disponible en la versión 1.0, use el selector de Versión.
Obtenga una lista de los objetos changeItemBase y sus propiedades. La API devuelve Microsoft Entra anuncios y versiones de cambios.
Esta API está disponible en las siguientes implementaciones nacionales de nube.
Servicio global | Gobierno de EE. UU. L4 | Us Government L5 (DOD) | China operada por 21Vianet |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
Permissions
Elija el permiso o los permisos marcados como con privilegios mínimos para esta API. Use un permiso o permisos con privilegios superiores solo si la aplicación lo requiere. Para obtener más información sobre los permisos delegados y de aplicación, consulte Tipos de permisos. Para obtener más información sobre estos permisos, consulte la referencia de permisos.
Tipo de permiso | Permisos con privilegios mínimos | Permisos con privilegios más altos |
---|---|---|
Delegado (cuenta profesional o educativa) | ChangeManagement.Read.All | No disponible. |
Delegado (cuenta personal de Microsoft) | No admitida. | No admitida. |
Aplicación | ChangeManagement.Read.All | No disponible. |
Cualquier usuario puede llamar a estas API, no hay requisitos de rol de administrador.
Solicitud HTTP
GET /identity/productChanges
Parámetros de consulta opcionales
Este método admite los $count
parámetros de consulta , $filter
(eq
, ne
, in
, startswith
), $orderby
, $search
, $top
(el tamaño de página predeterminado es 10 elementos, el máximo es 250 elementos) $select
y $skip
los parámetros de consulta de OData para ayudar a personalizar la respuesta.
Encabezados de solicitud
Nombre | Descripción |
---|---|
Authorization | {token} de portador. Obligatorio. Obtenga más información sobre la autenticación y la autorización. |
Cuerpo de la solicitud
No proporcione un cuerpo de solicitud para este método.
Respuesta
Si se ejecuta correctamente, este método devuelve un 200 OK
código de respuesta y una colección de objetos changeItemBase en el cuerpo de la respuesta.
Ejemplos
Solicitud
En el ejemplo siguiente se muestra la solicitud.
GET https://graph.microsoft.com/beta/identity/productChanges
Respuesta
En el ejemplo siguiente se muestra la respuesta.
Nota: Se puede acortar el objeto de respuesta que se muestra aquí para mejorar la legibilidad.
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
}
]
}