Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Caution
The Microsoft Entra lifecycle announcements APIs are deprecated and will stop returning data in May 2025. Use the Microsoft Entra release notes RSS feed instead.
Read the properties of an announcement object.
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | ChangeManagement.Read.All | Not available. |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | ChangeManagement.Read.All | Not available. |
Any user can call these APIs, there are no admin role requirements.
HTTP request
GET /identity/productChanges/microsoft.graph.announcement/{id}
Optional query parameters
This method supports the $select
OData query parameter to help customize the response.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and an announcement object in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identity/productChanges/microsoft.graph.announcement/ddde9e3b-7ee4-4066-a62e-fb1fc5fb87a1
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": {
"@odata.type": "#microsoft.graph.announcement",
"id": "ddde9e3b-7ee4-4066-a62e-fb1fc5fb87a1",
"changeItemState": "available",
"changeItemService": "mfA",
"tags": [
"Identity Modernization"
],
"systemTags": [
"entra_change_announcements_90days"
],
"documentationUrls": [
"https://learn.microsoft.com/en-us/entra/identity/authentication/how-to-migrate-mfa-server-to-azure-mfa?WT.mc_id=Portal-Microsoft_AAD_IAM"
],
"shortDescription": "Azure Multi-Factor Authentication Server (MFA Server) isn't available for new deployments and will be deprecated. Customers who are using MFA Server should move to using cloud-based Microsoft Entra multifactor authentication.",
"title": "Migrate from MFA Server to Microsoft Entra multifactor authentication",
"description": "*Omitted for brevity*",
"announcementDateTime": "2022-09-30T00:00:00Z",
"targetDateTime": "2024-09-30T00:00:00Z",
"impactLink": null,
"changeType": "deprecation",
"isCustomerActionRequired": true
}
}