Share via

How to pull up resource that is not listed on portal

Sam Uresin 56 Reputation points
2026-01-27T20:51:56.9433333+00:00

I don't see the Notification Hubs I created on my Azure portal. I first created one using the portal and it never confirmed that it was created correctly. I then created another one using the cloud shell. When I list all resources in my subscription using the cloud shell, I see both the one I created through the portal and the other one I created using Azure Cloud Shell but neither one shows up on my portal page under "All Resources".

How can I navigate to them and get the info I need to set up my apps?

Azure Notification Hubs
Azure Notification Hubs

An Azure service that is used to send push notifications to all major platforms from the cloud or on-premises environments.

0 comments No comments

Answer accepted by question author
  1. TP 155.2K Reputation points Volunteer Moderator
    2026-01-27T21:40:48.16+00:00

    Hi Sam,

    What you are seeing isn't normal (obviously), but with that in mind I'll suggest workaround.

    If you know the namespace name, resource group name, notification hub name, you can navigate directly to notification hub in portal using below format in address bar:

    https://portal.azure.com/#@<yourdirectoryname>.onmicrosoft.com/resource/subscriptions/<your subscription GUID>/resourceGroups/<resourceGroupName>/providers/Microsoft.NotificationHubs/namespaces/<yourNotificationHubNamespaceName>/notificationHubs/<yourNotificationHubName>/overview
    
    

    When things are working properly you should be able to see list of notification using link below:

    https://portal.azure.com/#view/HubsExtension/BrowseResource.ReactView/resourceType/Microsoft.NotificationHubs%2Fnamespaces%2FnotificationHubs

    You can do everything via CLI/PowerShell/REST API if needed.

    -TP

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Q&A Assist
    2026-01-27T20:52:05.55+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    If you cannot see the Notification Hubs you created in the Azure portal under "All Resources," there are a few steps you can take to locate them:

    1. Check Resource Group: Ensure you are looking in the correct resource group. Sometimes, resources are created in a specific resource group, and if you are not viewing that group, they won't appear in the "All Resources" list.
    2. Use Azure CLI or PowerShell: Since you mentioned that you can see the resources in the cloud shell, you can use Azure CLI or PowerShell commands to get detailed information about your Notification Hubs. For example, you can run the following commands:
      • Azure CLI:
             az notification-hub show --resource-group <YourResourceGroupName> --namespace-name <YourNamespaceName> --name <YourHubName>
        
      • PowerShell:
             Get-AzNotificationHub -Namespace "<YourNamespaceName>" -ResourceGroup "<YourResourceGroupName>"
        
    3. Refresh the Portal: Sometimes, the Azure portal may not refresh automatically. Try refreshing the page or logging out and back in to see if the resources appear.
    4. Check Subscription Filters: Ensure that you are viewing the correct subscription in the Azure portal. If you have multiple subscriptions, the resources may be associated with a different one.
    5. Contact Support: If you still cannot find your Notification Hubs after these steps, consider reaching out to Azure support for assistance.

    By following these steps, you should be able to navigate to your Notification Hubs and retrieve the information needed to set up your apps.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.