dnswatchdog.iodocs
Provider Configuration

Vercara UltraDNS

Connecting Vercara UltraDNS as a DNS provider in DNS Watchdog.

Overview

Vercara UltraDNS (formerly Neustar UltraDNS) is an enterprise DNS hosting and traffic management platform. DNS Watchdog integrates with the UltraDNS REST API.

Authentication

UltraDNS uses username and password authentication:

FieldDescription
UsernameYour UltraDNS API username
PasswordYour UltraDNS API password

Creating an API User

DNS Watchdog requires an API-only user account in UltraDNS. Follow these steps to create one:

  1. Log into the UltraDNS portal and click Accounts in the navigation menu.

    The UltraDNS portal showing the Accounts section

  2. Navigate to Users and click Invite new user. Check the API Only access checkbox and enter the email address for the new user.

    The invite users form with API Only access selected

  3. The user will receive a registration email. Click the Complete Registration link in the email.

  4. On the registration page, click Register New Account.

    The UltraDNS registration page

  5. Fill in the registration form. Take note of the User ID and password you set — these are the credentials you will use to connect DNS Watchdog.

    The completed registration form

  6. Once registration is complete, the new user will have API access to your DNS zones.

    Confirmation that DNS API access has been granted

Setup

  1. Ensure you have API access enabled on your UltraDNS account
  2. In DNS Watchdog, go to SettingsProvidersAdd Provider
  3. Select Vercara UltraDNS as the provider type
  4. Enter your username and password

The UltraDNS credentials form showing Username and Password input fields

  1. Choose your access mode (read-only or read-write)
  2. Click Save
# Authenticate with UltraDNS API
curl -X POST "https://api.ultradns.com/authorization/token" \
  -d "grant_type=password&username=<USERNAME>&password=<PASSWORD>"

# Verify access by listing zones
curl -H "Authorization: Bearer <TOKEN>" \
  "https://api.ultradns.com/zones"

Once verified, add your credentials in DNS Watchdog under SettingsProvidersAdd Provider.

Permissions

  • Read-only — requires permissions to list zones and records
  • Read-write — additionally requires permissions to create and delete records

On this page