github.com/StackExchange/dnscontrol/v4@v4.11.0/documentation/provider/easyname.md (about) 1 DNSControl's easyname 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 `EASYNAME` 6 along with [API-Access](https://my.easyname.com/en/account/api) information 7 8 Example: 9 10 {% code title="creds.json" %} 11 ```json 12 { 13 "easyname": { 14 "TYPE": "EASYNAME", 15 "apikey": "API Key", 16 "authsalt": "API Authentication Salt", 17 "email": "example@example.com", 18 "signsalt": "API Signing Salt", 19 "userid": 12345 20 } 21 } 22 ``` 23 {% endcode %} 24 25 ## Metadata 26 This provider does not recognize any special metadata fields unique to easyname. 27 28 ## Usage 29 An example configuration: 30 31 {% code title="dnsconfig.js" %} 32 ```javascript 33 var REG_EASYNAME = NewRegistrar("easyname"); 34 35 D("example.com", REG_EASYNAME, 36 NAMESERVER("ns1.example.com."), 37 NAMESERVER("ns2.example.com."), 38 END); 39 ``` 40 {% endcode %} 41 42 ## Activation 43 44 You must enable API-Access for your account.