github.com/StackExchange/dnscontrol/v4@v4.11.0/documentation/provider/dynadot.md (about) 1 DNSControl's Dynadot provider supports being a Registrar. Support for being a DNS Provider is not included, but could be added in the future. 2 3 ## Configuration 4 5 To use this provider, add an entry to `creds.json` with `TYPE` set to `DYNADOT` 6 along with `key` from the [Dynadot API](https://www.dynadot.com/account/domain/setting/api.html). 7 8 Example: 9 10 {% code title="creds.json" %} 11 ```json 12 { 13 "dynadot": { 14 "TYPE": "DYNADOT", 15 "key": "API Key", 16 } 17 } 18 ``` 19 {% endcode %} 20 21 ## Metadata 22 This provider does not recognize any special metadata fields unique to Dynadot. 23 24 ## Usage 25 An example configuration: 26 27 {% code title="dnsconfig.js" %} 28 ```javascript 29 var REG_DYNADOT = NewRegistrar("dynadot"); 30 31 DOMAIN_ELSEWHERE("example.com", REG_DYNADOT, [ 32 "ns1.example.net.", 33 "ns2.example.net.", 34 "ns3.example.net.", 35 ]); 36 ``` 37 {% endcode %} 38 39 ## Activation 40 41 You must [enable the Dynadot API](https://www.dynadot.com/account/domain/setting/api.html) for your account and whitelist the IP address of the machine that will run DNSControl.