unable to verify domain name. Ensure you have added the record above at the registrar for doman

David Acklin 0 Reputation points
2026-08-08T19:25:43.5+00:00

i have added the txt to my domain registration and i still can't validate

Azure DNS
Azure DNS

An Azure service that enables hosting Domain Name System (DNS) domains in Azure.


1 answer

Sort by: Most helpful
  1. Allan Solomon Mejia 7,915 Reputation points
    2026-08-08T19:53:32.1933333+00:00

    Hi @David Acklin

    If you've already added the TXT record but Azure still reports “Unable to verify domain name”, I would first confirm that the record is publicly resolvable and that the host/name and value exactly match what Azure provided.

    From a command prompt, try:

    nslookup -type=TXT yourdomain.com

    If Azure instructed you to create the verification record under a specific host such as asuid or asuid.<subdomain>, query that exact FQDN instead:

    nslookup -type=TXT asuid.yourdomain.com

    For example, with Azure App Service, Microsoft documents the verification TXT record as:

    • Root domain: asuid → Domain Verification ID
    • Subdomain such as www: asuid.www → Domain Verification ID

    Azure needs to be able to retrieve that TXT record before it can verify ownership.

    If nslookup doesn't return the expected TXT value, I would check the following:

    1. Verify the authoritative DNS provider. Make sure you're adding the TXT record where the domain's current nameservers actually point. It's possible to manage the domain at one registrar while DNS is hosted somewhere else.
    2. Check the Host/Name field. Some DNS providers automatically append the domain name. For example, entering asuid.example.com instead of just asuid could accidentally create something equivalent to asuid.example.com.example.com.
    3. Check the TXT value carefully. Copy the verification value directly from Azure and make sure there are no extra spaces or other characters.
    4. Allow for DNS propagation. Depending on the DNS provider and TTL, a newly created or modified record might not immediately be visible to Azure.
    5. Check the authoritative nameserver directly. You can find the authoritative servers with: nslookup -type=NS yourdomain.com Then query one directly: nslookup -type=TXT asuid.yourdomain.com <authoritative-nameserver>

    Microsoft's Azure DNS troubleshooting guidance specifically recommends checking whether the record exists on the authoritative DNS servers and confirming the record name and type are correct.

    If you can share which Azure service you're trying to associate the domain with (App Service, Microsoft Entra ID, Static Web Apps, Communication Services, etc.) and the TXT host/name you're using, you can redact the verification token. We can tell you exactly which DNS record Azure should be looking for.

    That last question is important because the screenshot is tagged Azure DNS, but the exact TXT record format depends on the Azure service doing the domain verification.

    Please "Accept the Answer" if this information helped you. This will help us and others in the community as well.

    Was this answer helpful?


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.