{% extends "ui/templates/base/layout.html" %} {% block content %}

Custom Domain Verification

Verify DNS TXT records for custom firm, consultant and marketplace domains before activating runtime routing.

Back to Domains
{% if results %}

Verification Result

{% for mapping, result in results %}
{{ mapping.domain_name }}
{{ 'Verified' if result.ok else 'Pending' }}
{{ result.message }}
{% if result.found_values %}
Found: {{ result.found_values|join(', ') }}
{% endif %}
{% endfor %}
{% endif %}

Domains Awaiting DNS Verification

Add the TXT record at your DNS provider, wait for DNS propagation, then verify.

{% if pending %}
{% for m in pending %}
{{ m.domain_name }}
{{ m.domain_type.replace('_', ' ')|title }}
TXT Name
{{ m.dns_txt_name or '-' }}
TXT Value
{{ m.dns_txt_value or '-' }}
Open Details
{% endfor %}
{% else %}
No pending domain verification records.
{% endif %}

DNS record format

For a domain such as arrr.associates, add a TXT record at:

_audit-firm-verify.arrr.associates

The TXT value must exactly match the verification token shown for that domain.

{% endblock %}