Some domains could not be retrieved in Communication Service

Fabian Fischer 25 Reputation points
2025-05-12T11:32:58.1466667+00:00

I have a communication service setup in Azure. In the Azure Portal, when I navigate to the communication service -> email -> domains, I get the following error (actual IDs masked). Any clues on what could cause this?

The service is working so this is just something that happens in Azure Portal, but it prevents me from configuring the domains.

Some domains could not be retrieved. Error fetching /subscriptions/xxx/resourceGroups/xxx/providers/Microsoft.Communication/emailServices/xxx/domains/AzureManagedDomain: An unknown error occured,Error fetching /subscriptions/xxx/resourceGroups/xxx/providers/Microsoft.Communication/emailServices/xxx/domains/xxx.se: An unknown error occured

Azure Communication Services
Azure Communication Services
An Azure communication platform for deploying applications across devices and platforms.
1,252 questions
{count} votes

Accepted answer
  1. Suresh Chikkam 2,135 Reputation points Microsoft External Staff Moderator
    2025-05-28T11:48:17.4966667+00:00

    Fabian Fischer, I know how irritating it is when the portal simply refuses to show domains that are actually there. What’s happening under the covers is a brief timeout or hiccup in the portal’s domain-metadata API especially for AzureManagedDomain or any custom domain still completing DNS validation. The good news is your email flow isn’t broken, it’s just the UI.

    To unblock yourself right now, switch to the CLI so you can see and fix whatever’s stuck. First, list everything on your Email Communication resource.

    az communication email domain list \
      --resource-group YourResourceGroup \
      --email-service-name YourEmailService
    

    If one of your domains shows a provisioningState of Pending or Failed, kick off a fresh DNS.

    az communication email domain initiate-verification \
      --resource-group YourResourceGroup \
      --email-service-name YourEmailService \
      --domain-name contoso.com
    

    Wait for that command to report “Succeeded,” then reload the portal. If the portal still errors after you see Succeeded everywhere, try an incognito window or clear your browser cache—those stale tokens sometimes hang onto old errors. Once the CLI tells you all domains are green, the portal will finally reflect that state. If it doesn’t, you can always fall back on the same CLI commands (or ARM templates) to manage domains reliably until the UI issue is fully resolved.

    Hope it helps!


    Please do not forget to click "Accept the answer” and Yes wherever the information provided helps you, this can be beneficial to other community members.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Alex Burlachenko 11,610 Reputation points
    2025-05-13T11:47:27.2266667+00:00

    Dear Fabian Fischer,

    Thank you for reaching out about the issue you’re experiencing with retrieving domains in Azure Communication Services. I understand how frustrating it can be when the Azure Portal doesn’t display the information you need, especially when you’re trying to configure domains for your email service.

    The error message you’re seeing, "Some domains could not be retrieved," typically occurs when there’s a temporary issue with the Azure Portal or the backend service. Since you mentioned that the service itself is working, this is likely a display or retrieval problem rather than a functional one.

    First, refresh the Azure Portal page or log out and log back in. Sometimes, this can resolve temporary glitches in the portal. According to Microsoft’s documentation, refreshing the portal can help clear cached data that might be causing display issues.

    Second, check if there are any ongoing service issues in the Azure status page. Occasionally, regional or service-specific outages can affect the portal’s functionality. You can find the latest updates here: Azure Status.

    Third, ensure that your account has the necessary permissions to view and manage domains in Azure Communication Services. The error might occur if there’s a permission mismatch.

    I hope this helps

    Best regards, Alex P.S. If my answer help to you, please Accept my answer PPS That is my Answer and not a Comment https://ctrlaltdel.blog/

    0 comments No comments

Your answer

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