Get roadmap
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.
Read the properties and relationships of a roadmap 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.roadmap/{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 a roadmap object in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identity/productChanges/microsoft.graph.roadmap/8370d119-d695-4dd9-bce2-00e893fadf7d
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.roadmap",
"id": "8370d119-d695-4dd9-bce2-00e893fadf7d",
"changeItemState": "available",
"changeItemService": "microsoftAuthenticatorApp",
"tags": [
""
],
"systemTags": [
"entra_roadmap_highlight_new_feature"
],
"documentationUrls": [
"https://learn.microsoft.com/en-us/entra/identity/authentication/how-to-enable-authenticator-passkey"
],
"shortDescription": "For enterprises that use passwords today, passkeys (FIDO2) provide a seamless way for workers to authenticate without entering a username or password. Passkeys (FIDO2) provide improved productivity for workers, and have better security.",
"title": "Enable passkeys (FIDO2) for your organization",
"description": "*Ommited for brevity.*",
"deliveryStage": "publicPreview",
"category": "userAuthentication",
"publishedDateTime": "2024-04-27T07:00:00Z",
"gotoLink": null
}
}