Kevin Pearce Thanks for reaching out. As we have announced already (Opens in new window or tab), the legacy portal technically retired on October 31st, 2023. For some services, the legacy portal may still be available.
On December 1st, 2023, the engineering team started disabling legacy portal for all services where usage of portal is not detected. For a service where legacy portal has been disabled, browsing to the legacy portal will return a "503 - Service Unavailable" message.
Customers can enable/disable the Developer Portal (both new and legacy) using this REST API (Opens in new window or tab). Note that Legacy portal cannot be enabled by customers if it has been disabled by the engineering team at the service level. customers still have the option to request enabling the legacy portal by raising the support ticket.
A PATCH call can be sent with the appropriate fields depending on which portal the customer is trying to enable or disable.
Here is a sample REST call that shows how to disable the legacy portal on an existing API Management service
PATCH https://management.azure.com/subscriptions/xxxx/resourceGroups/xxx/providers/Microsoft.ApiManagement/service/xxxx?api-version=2023-03-01-preview
Authorization: Bearer <<redacted>>
Content-type: application/json
{
"properties": {
"LegacyPortalStatus": "Disabled"
}
}
Enabling or disabling the legacy developer portal does not have any side effects that would alter any existing new portal functionality. The new developer portal and the legacy developer portal are separate applications that do not share any code or functionality.
let me know incase of further queries, I would be happy to assist you.
Please "Accept Answer" and "upvote" if the answer is helpful so that it can help others in the community.