New URL for the Microsoft 365 Roadmap API

Users can automatically retrieve entries from the Microsoft 365 Roadmap through the URL https://roadmap-api.azurewebsites.net/api/features.

The roadmap has been updated on 13 February. The system has also been updated in the background.

The backend has been upgraded to be produced from our Change Communication engine. This upgrade lays the groundwork for future enhancements, providing us with the flexibility to introduce new features and improvements over time.

For this reason, the old URL will no longer work from 15 March.
A new URL is available.

If you are consuming the Roadmap API, please redirect your automation to https://www.microsoft.com/releasecommunications/api/v1/m365 there is no change to the schema.

Users can get the roadmap results in PowerShell with just a few lines of code.

PowerShell
# Fetch and sort the latest Microsoft 365 roadmap updates with PowerShell

$RoadmapURL = "https://www.microsoft.com/releasecommunications/api/v1/m365"
$Result = Invoke-RestMethod -Method Get -Uri $RoadmapURL
$Result = $Result | Sort-Object -Property created -Descending # Sorting results so the most recently created items appear at the top
$Result | Select-Object -first 10 # As example, returning the latest 10 items

PowerShell
Share
Avatar photo

Tobias Asböck

Tobias is a Senior System Engineer with around ten years of professional experience with Microsoft 365 products such as SharePoint Online, SharePoint Premium, OneDrive for Business, Teams Collaboration, Entra ID, Information Protection, Universal Print, and Microsoft 365 Licensing. He also has 15+ years of experience planning, administering, and operating SharePoint Server environments. Tobias is a PowerShell Scripter with certifications for Microsoft 365 products. In his spare time, Tobias is busy with updates in the Microsoft 365 world or on the road with his road bike and other sports activities. If you have additional questions, please contact me via LinkedIn or [email protected].

Leave a Reply

Your email address will not be published. Required fields are marked *