For the complete documentation index, see llms.txt. This page is also available as Markdown.

DOMAINNAMESHOP

Configuration

To use this provider, add an entry to creds.json with TYPE set to DOMAINNAMESHOP along with your Domainnameshop Token and Secret.

Example:

creds.json
{
  "mydomainnameshop": {
    "TYPE": "DOMAINNAMESHOP",
    "token": "your-domainnameshop-token",
    "secret": "your-domainnameshop-secret"
  }
}

Metadata

This provider does not recognize any special metadata fields unique to Domainnameshop.

Usage

An example configuration:

dnsconfig.js
var REG_NONE = NewRegistrar("none");
var DSP_DOMAINNAMESHOP = NewDnsProvider("mydomainnameshop");

D("example.com", REG_NONE, DnsProvider(DSP_DOMAINNAMESHOP),
    A("test", "1.2.3.4"),
);

Activation

Create API Token and secret

Limitations

  • Domainnameshop DNS only supports TTLs which are a multiple of 60.

Feature Summary

Last updated