1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

36 lines
516 B
Markdown
Raw Normal View History

---
name: NS1
title: NS1 Provider
layout: default
jsId: NS1
---
# NS1 Provider
## Configuration
In your credentials json file you must provide your NS1 api key:
```json
{
"ns1":{
"api_token": "your-ns1-token"
}
}
```
## Metadata
This provider does not recognize any special metadata fields unique to NS1.
## Usage
Example Javascript:
```js
var REG_NONE = NewRegistrar('none', 'NONE')
var NS1 = NewDnsProvider("ns1", "NS1");
D("example.tld", REG_NONE, DnsProvider(NS1),
A("test","1.2.3.4")
);
```