github.com/StackExchange/dnscontrol/v4@v4.11.0/documentation/provider/realtimeregister.md (about) 1 [realtimeregister.com](https://realtimeregister.com) is a domain registrar based in the Netherlands. 2 3 ## Configuration 4 5 To use this provider, add an entry to `creds.json` with `TYPE` set to `REALTIMEREGISTER` 6 along with your API-key. Further configuration includes a flag indicating BASIC or PREMIUM DNS-service and a flag 7 indicating the use of the sandbox environment 8 9 **Example:** 10 11 {% code title="creds.json" %} 12 ```json 13 { 14 "realtimeregister": { 15 "TYPE": "REALTIMEREGISTER", 16 "apikey": "abcdefghijklmnopqrstuvwxyz1234567890", 17 "sandbox" : "0", 18 "premium" : "0" 19 } 20 } 21 ``` 22 {% endcode %} 23 24 If sandbox is omitted or set to any other value than "1" the production API will be used. 25 If premium is set to "1", you will only be able to update zones using Premium DNS. If it is omitted or set to any other value, you 26 will only be able to update zones using Basic DNS. 27 28 **Important Notes**: 29 * It is recommended to create a 'DNSControl' user in your account settings with limited permissions 30 (i.e. VIEW_DNS_ZONE, CREATE_DNS_ZONE, UPDATE_DNS_ZONE, VIEW_DOMAIN, UPDATE_DOMAIN), otherwise anyone with 31 access to this `creds.json` file might have *full* access to your RTR account and will be able to transfer or delete your domains. 32 33 ## Metadata 34 This provider does not recognize any special metadata fields unique to Realtime Register. 35 36 ## Usage 37 An example `dnsconfig.js` configuration file 38 39 {% code title="dnsconfig.js" %} 40 ```javascript 41 var REG_RTR = NewRegistrar("realtimeregister"); 42 var DSP_RTR = NewDnsProvider("realtimeregister"); 43 44 D("example.com", REG_RTR, DnsProvider(DSP_RTR), 45 A("test", "1.2.3.4"), 46 END); 47 ``` 48 {% endcode %}